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 trialGena I
540 Pointsnot sure why this isn't writing random numbers i followed video
function randomNumber(upper) { return Math.floor( Math.random() * upper ) + 1; }
var counter= 0; while (counter < 10 ) { var randNum= randomNumber(6); document.write(randNum + ' '); counter +=1; }
4 Answers
Stephan Olsen
6,650 PointsIt seems to be working for me. Can you elaborate the problem you're having?
Stephan Olsen
6,650 PointsYour code seems valid, and it works for me. Perhaps try copy pasting it in?
Gena I
540 Pointsit was problem in my script src im good thanks
Stephan Olsen
6,650 PointsNo problem :)
APOORV GUSAIN
332 Pointsdid you connect your javascript with html ?? this might be the reason check it out .
Gena I
540 PointsGena I
540 Pointsi go to view it from workspace and only the heading shows.. no numbers