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.

Gena 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