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

Omar Elfishawi
4,060 PointsBoolean Values - Unexpected token
while following through the lesson i wrote this code and i get the following error Uncaught SyntaxError: Unexpected token else (line9) Im pretty sure its a syntax error but i cant spot it. any help will be appreciated
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; } if (correctGuess ===true); { document.write('U magician'); } else { document.write('<p>Sorry the right number was ' + randomNumber) + '.</p>'); }
1 Answer

Steven Parker
241,488 PointsI see two syntax errors:
- a stray semicolon between the "If" condition and the open brace of the code block
- extra close parenthesis after "randomNumber" in the last statement
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.