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 Loops, Arrays and Objects Tracking Multiple Items with Arrays Build a Quiz Challenge, Part 1 Solution

I answer the first question and then it stops. error on the console saying correctAnswers is undefined. quiz.js:23

When I run my program the console kicks an error message, correctAnswrs undifned on line 23. Can anyone help me with this? https://w.trhou.se/djf9pf6dfh

1 Answer

You're really close!

Two things:

  • The correctAnswers variable is never initialized, but that's easily fixed - just add "var correctAnswers = 0;" after your other variables. This is ultimately what was causing the error.
  • There's also one place where you have correctAnswer (without the 's') - make sure you add that 's'.

After doing those two things, your code should work.