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 doesn't a prompt pop up? (pls check out my code) šŸ˜­

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

var correct = 0;
var answer;

var questionList = [
  ["How many countries are there?", 195],
  ["How many planets are there?", 8],
  ["When you call a function, the pieces of information being passed to that function are called what?", "arguments"]
];

for (var i = 0, i < questionList.length, i++) {
  answer = prompt(questionList[i][0]);
  if (answer == questionList[i][1]) {
    correct += 1;
  }

}

print("You've answered " + correct + " questions.");

(There're probably 99 problems with my code but please bear with me šŸ˜‚šŸ˜­šŸ˜­)

1 Answer

Steven Parker
Steven Parker
229,644 Points

The clauses of a "for" loop must be separated by semicolons:

for (var i = 0, i < questionList.length, i++) {  // original
for (var i = 0; i < questionList.length; i++) {  // corrected

šŸ˜‰

oh that's right šŸ˜‚...thank you again Steven you're a lifesaver šŸ™šŸ˜­šŸ˜­