Random Number in a Specific Range
Math.floor(Math.random() * 5);
// Random number between 0 and 4. Math.floor(Math.random() * (max - min + 1)) + min;
Math.floor(Math.random() * 5);
// Random number between 0 and 4. Math.floor(Math.random() * (max - min + 1)) + min;