Hi,
I wonder what is wrong with my code. Everything seems to be right except one thing: “The result of randomWholeNum should be a whole number.”
var randomNumberBetween0and19 = Math.floor(Math.random() * 20);
function randomWholeNum() {
// Only change code below this line.
Math.floor(Math.random() * 10);
return Math.random();
}