Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
let size = 5; const arr = Array.from({length: size}, val => Math.floor(Math.random() * 100)); console.log(arr) /* run: [ 70, 8, 86, 34, 79 ] */