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.

Taqwa R
1,852 PointsMy code is correct. Why won't the random numbers appear?
Here's a snapshot: https://w.trhou.se/ncg4picgof
3 Answers

Evgeniia Mas
4,452 PointsHello! On line number 8 in js file you have two "="., but wanted to make assignment to var, I think the problem is here at least.

Thomas Nilsen
14,957 PointsMy code is correct. Why won't the random numbers appear?
Well - if the numbers doesn't appear, the code is likely not correct.
Evgeniia S is right. Your mistake is here:
var = randNum = randomNumber(6);
should be
var randNum = randomNumber(6);

Taqwa R
1,852 PointsThanks both! I had read over my code like 10 times, and compared to the example in the video but somehow missing the extra "=" each time. :-)