Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
const min = 1 const max = 10 for (let i = 0; i < 20; i++) console.log(Math.floor(Math.random() * (max - min + 1)) + min; /* run: 6 10 1 2 5 10 5 8 5 7 9 6 8 5 3 2 4 5 6 5 */