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.

matthew augustine
2,846 Pointscan'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?//
1 Answer

Steven Parker
215,958 PointsThis 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.
Or watch this video on code formatting.
Adam Beer
11,313 PointsAdam Beer
11,313 PointsCode
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.
or you can use the snapshot function.