var random; var max = 8 function findRandom() { random = Math.floor(Math.random() * max) //Finds number between 0 - max console.log(random) } findRandom()