Contact: aviboots(AT)netvision.net.il
41,238 questions
53,744 answers
573 users
let size = 6; const arr = Array.from({length: size}, val => Math.floor(Math.random() * 100)); console.log(arr) /* run: [ 39, 58, 87, 59, 79, 27 ] */