Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialCarla Hiner
7,656 PointsrandomNumber is undefined error in console. not sure what I'm doing wrong here.
Here is my code:
function getRandomNumber(upper, lower) { var randomNumber = Math.floor(Math.random() * (upper - lower + 1)) + lower; return randomNumber; }
getRandomNumber(100, 50); alert(randomNumber);
1 Answer
Steven Parker
231,248 PointsYour randomNumber variable only exists inside the function.
But the function returns it, so you can display it this way:
alert(getRandomNumber(100, 50));
Carla Hiner
7,656 PointsCarla Hiner
7,656 PointsThanks, Steven! I knew I was missing something simple, but I couldn't see it.