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

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.