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 Arrays Multidimensional Arrays Improve the Quiz – One Solution

David Shulkin
seal-mask
.a{fill-rule:evenodd;}techdegree
David Shulkin
Front End Web Development Techdegree Student 10,254 Points

Here's how I did it, I added some of my own stuff for personal learning

const quizQuestions = [
  ['What program are you studying?', 'Front End Development'],
  ['What is the name of your bootcamp?', 'Treehouse'],
  ['When should you be done with your curriculum?', 'Four Months']
];

  let correct = 0;
  let incorrect = 0;
  let right = [' '];
  let wrong = [' '];

for ( i = 0; i < quizQuestions.length; i++ ) {
  let userInput = prompt(`${quizQuestions[i][0]}`);

    if (userInput.toLowerCase().includes(`${quizQuestions[i][1].toLowerCase()}`)) {
    correct++;
    right += `<li>${quizQuestions[i][0].slice(0)}</li>`;

  } else if (!userInput.toLowerCase().includes(`${quizQuestions[i][1].toLowerCase()}`)) {
    incorrect++;
    wrong += `<li>${quizQuestions[i][0].slice(0)}</li>`;
  }       
}

document.querySelector('main').innerHTML = `
<h1>You answered <strong>${correct}</strong> correctly</h1>

<h2>You got these questions right:</h2>
   <ul> 
      ${right}
    </ul>

  <h2>You got ${incorrect} wrong:</h2>
    <ul> 
      ${wrong}
    </ul>
`;