x * (max+min+1)+min code example
Example 1: javascript get random array of integre in given range
const randomArrayInRange = (min, max, n) => Array.from({ length: n }, () => Math.floor(Math.random() * (max - min + 1)) + min);
// Example
randomArrayInRange(1, 100, 10);
Example 2: Math.floor( Math.random () * (max - min + 1)) + min)
Math.floor( Math.random () * (max - min + 1)) + min)