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 trialMaddie Duffy
3,659 PointsWhy aren't the prompts appearing? What is wrong with my code?
I don't understand what i've done wrong i've been going along with the video. Please help! Thanks!
1 Answer
Alfonso Montano
2,970 PointsFirst, 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
Maddie Duffy
3,659 PointsMaddie Duffy
3,659 PointsDon't worry! I found it. Spelt HTML wrong at the end of the program.