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 Loops, Arrays and Objects Simplify Repetitive Tasks with Loops What are Loops?

Mariano Okpalefe
Mariano Okpalefe
4,182 Points

why did he create a new variable inside of the loop called randNum when he already created a function to do that?

i'm assuming he just wanted to give the function a different name inside of the loop? i'm not sure just trying to figure out logically why he did that?

1 Answer

Erik Nuber
Erik Nuber
20,629 Points

randNum is used to store the value of the random number when it is generated.

function randomNunber(upper) {
   return Math.floor(Math.random() * upper) + 1;
}

This function is used to generate a random number from 1 to upper.

var randNum = randomNumber(6);

This is used to call the function randomNumber and store the random number returned inside the variable randNum to be used however it needs to be.