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.

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
216,071 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.