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?

Taqwa R
Taqwa R
1,852 Points

My code is correct. Why won't the random numbers appear?

Here's a snapshot: https://w.trhou.se/ncg4picgof

3 Answers

Evgeniia Mas
Evgeniia Mas
4,452 Points

Hello! 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
Thomas Nilsen
14,957 Points

My 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
Taqwa R
1,852 Points

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