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 JavaScript Basics (Retired) Making Decisions with Conditional Statements Improving the Random Number Guessing Game

matthew augustine
matthew augustine
2,846 Points

can't figure out why I am getting unexpected end of script error.. otherwise I actually think I understand !

var correctGuess = false; 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 ) { correctGuess = true; } else if (parseInt(guess) < randomNuber) { var guessMore = prompt("Guess again, the number I am thinking of is more than " + guess); if (parseInt(guessMore) === randomNumber) { correctGuess = true; } else if (parseInt(guess) > randomNumber) { var guessMore = prompt("Try again, the number I am thinking of is less than " + guess); if (parseInt(guessMore) === randomNumber) { correctGuess = true; } } if ( correctGuess ) { document.write('<p>You guessed the number!</p>'); } else { document.write('<p>Sorry. The number was ' + randomNumber + '.</p>'); }

//error on console says it has to do with line 20 - my last curly bracket?//

Adam Beer
Adam Beer
11,314 Points

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>
      ```

or you can use the snapshot function.

1 Answer

Steven Parker
Steven Parker
229,732 Points

This error is most commonly caused by unmatched parentheses or braces. In this case, the program needs one more closing brace to be balanced.

For future questions, please use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:   Or watch this video on code formatting.