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

Patience Anaya
PLUS
Patience Anaya
Courses Plus Student 2,400 Points

Why is this code not running?

I am getting and uncaught syntax error on line 21 in my script.js file it says that 'Unexpected end of input' for the closing bracket. Not sure why... I have checked it and looks the same as the lessons that I followed.

https://w.trhou.se/hg3ns1kl47 ->in the file script.js<-

2 Answers

'Unexpected end of input' usually means something is wrong with the brackets. The bracket on line 16 is facing the wrong direction. It should be a closing bracket.

} else if (parseInt(guess) > randomNumber ) {
  var guessLess = prompt ('try again. The number is less than ' + guess);
      if (parseInt(guessLess) === randomNumber) {
      correctGuess = true;
  }
} // <--this instead of {