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 trialTaqwa 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. :-)