Trivia

Step 11: When the next button is clicked, check the question number to determine the next question to show.
Hint: Your next function should have something like:
if (questionNumber == 2) {
  questionParagraph.innerHTML = `some question 2`
}
else if (questionNumber == 3) {
  questionParagraph.innerHTML = `some question 3`
}
Last step Next step