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 trial

JavaScript JavaScript Basics (Retired) Creating Reusable Code with Functions Getting Information From a Function

Using a random number value to store in a variable

When storing a random number value into a variable, how come the variable doesn't return a random number every time you call it?

For example, if dieroll returns 2 and you call it again, you will still get the number 2 and not a random number.

Shouldn't the value of the variable change each time it's called on the console?

function getRandomNumber() { var randomNumber = Math.floor( Math.random() * 6 ) + 1; return randomNumber; } var dieroll = getRandomNumber();

1 Answer

I just tested your code and it returned each time a different number . Not clear for me why you get same number.