Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

david 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.