Math Random Random Equitative JS
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
Sleepy Skylark
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}