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

kristianshishmanov
kristianshishmanov
2,651 Points

My Solution

function print(message) {
  document.write(message);
}
// Questions array
var questions = [
  ['What is the capital of BG?', 'sofia'],
  ['What is the capital of NO?', 'oslo'],
  ['What is the capital of SE?', 'stockholm']
];

// Setting up HTML output and vars to store correct/wrong answers
var toHTML = "<ol>";
var correct = 0;
var wrong = 0;

// loop
for (i = 0; i<questions.length; i++) {
  if (prompt(questions[i][0]).toLowerCase() === questions[i][1]) {
    toHTML += "<li>" + "Your answer to: " + "\"" + questions[i][0] + "\"" + " was correct!" + "</li>";
    correct++;
  } else {
      toHTML += "<li>" + "Your answer to: " + "\"" + questions[i][0] + "\"" + " was wrong!" + "</li>";
      wrong++;
  }
}
// completing the output for HTML
toHTML += "</ol>" + "<p>" + "You got " + correct + " answer(s) right and " + wrong + " answer(s) wrong";
print(toHTML);