Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 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 ] */