diff --git a/12. Create a Spinning Loader/game.js b/12. Create a Spinning Loader/game.js index e89029a..05bd8c6 100644 --- a/12. Create a Spinning Loader/game.js +++ b/12. Create a Spinning Loader/game.js @@ -27,7 +27,7 @@ fetch( }; const answerChoices = [...loadedQuestion.incorrect_answers]; - formattedQuestion.answer = Math.floor(Math.random() * 3) + 1; + formattedQuestion.answer = Math.floor(Math.random() * 4) + 1; answerChoices.splice( formattedQuestion.answer - 1, 0,