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

Why aren't the prompts appearing? What is wrong with my code?

https://w.trhou.se/tcy5gynz9e

I don't understand what i've done wrong i've been going along with the video. Please help! Thanks!

Don't worry! I found it. Spelt HTML wrong at the end of the program.

1 Answer

Alfonso Montano
Alfonso Montano
2,970 Points

First, on the first line you're not assigning anything to the questionsAndAnswers variable. It should be something like this:

var questionsAndAnswers = [
  ["How many days in a week?", 7],
  ["How many days in a year?", 365],
  ["How many times does Christmas occur in a year?", 1]
];

The next error you'll encounter is in line 28. it should be:

print(html);

Other than that your logic is correct