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 trialdavid mchale
1,434 Pointswhy not just use the variable?
Inside the while loop he uses 'guess = getRandomNumber(upper);' why not just use the global variable the above was assigned to so it reads, 'guess = randomNumber;'
1 Answer
Sam Donald
36,305 PointsThink of this program as a Pick any number trick a magician might play on you.
The global randomNumber
variable is the number you picked at the beginning of the trick/program. The magician can't know that number they have to guess it.
When the while
loop runs guess
is assigned the returned randomly generated number from the getRandomNumber()
function.
If guess
was set to equal randomNumber
it would alway pass on the second iteration.