function buildQuiz(){ const output = []; myQuestions.forEach( (currentQuestion, questionNumber) => { answers // stockage des différentes réponses const answers = []; for(letter in currentQuestion.answers){ answers.push( `` ); } output.push( `
${currentQuestion.question}
${answers.join("")}
` ); } ); quizContainer.innerHTML = output.join(''); }