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 don't think doing this inside a for loop works correctly? Trying to figure out another method of doing this?

Any suggestions for a method to code this?

Steven Parker
Steven Parker
230,688 Points

Please post your code, or even better, make a snapshot of your workspace and post the link to it here.

here is my code:

var questions = prompt([ ['What my favorite color?', 'green'], ['What is my favorite food', 'pizza'] ]);

var score = 0; var question; var answers; var response; var html;

function display(message){ document.write(message) };

for (i = 0; i < questions.length; i++) { question = questions[i][0]; answers = questions[i][1]; response = prompt(questions); if (response === answers){ score++ } }

html = 'you got' + score + 'questions right'; display(html);

1 Answer

Steven Parker
Steven Parker
230,688 Points

The method is fine but you have a couple of syntax errors.
First, the assignment of the array should not be inside a "prompt" function call:

var questions = [["What my favorite color?", "green"], ["What is my favorite food", "pizza"]];

Then, inside the loop, the real "prompt" call should use "question" (singular) instead of the entire array:

  response = prompt(question);  // not "questions" (plural)

You're absolutely right Steven. I didn't even notice. Thank you.