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.

Erin Gavin
3,341 PointsCode issues in Build a Random Number Game
var randomNumber = Math.floor(Math.random() * 6 ) + 1;
var guess = prompt('I am thinking of a number between 1 and 6. What is it?');
if (parseInt(guess) === randomNumber ) {
document.write('<p>You guessed the number!</p>');
} else {
document.write('<p>Sorry. The number was ' + randomNumber + '</p>);
}
This is the code I wrote following the example exactly and it gives me nothing but the Header.
3 Answers

Steven Treadway
10,037 PointsYour code is correct except for one small mistake. You left out a closing quotation mark at the very end of your if/else statement. It should look like this..
else {
document.write('Sorry. The number was ' + randomNumber + ' ');
}

Biwash Lama
13,772 Pointsyou should remove '+' sign and single quotation (') after the randomNumber from the last line.

Erin Gavin
3,341 PointsActually it turns out I didn't need to remove anything, I missed a Period:
} else {
document.write('<p>Sorry. The number was ' + randomNumber + '.</p>');
}
Victor Rundbaken
14,037 PointsVictor Rundbaken
14,037 PointsHey Erin, could you repost your code within a code box like this, it's pretty hard to read like that.