Here you can find the source of getRandomInt (min, max)
function getRandomInt (min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }
function getRandomInt(min, max) return Math.floor(Math.random() * (max - min) + min);
function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min)) + min; Array.prototype.max = function( array ){ return Math.max.apply( Math, array ); };
function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min)) + min;
Random.getRandomIntInclusive(min, max){
return Math.floor(Math.random() * (max - min + 1) + min);