// Random Whole Number function randomWholeNumber(min, max){ return Math.floor(Math.random() * (1 + max - min) + min); }