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

Erin Gavin
Erin Gavin
3,341 Points

Code 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.

Hey Erin, could you repost your code within a code box like this, it's pretty hard to read like that.

Code
Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

            ```html
            <p>This is code!</p>
            ```

3 Answers

Steven Treadway
Steven Treadway
10,037 Points

Your 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
Biwash Lama
13,772 Points

you should remove '+' sign and single quotation (') after the randomNumber from the last line.

Erin Gavin
Erin Gavin
3,341 Points

Actually it turns out I didn't need to remove anything, I missed a Period:

} else { document.write('<p>Sorry. The number was ' + randomNumber + '.</p>'); }