var stepOne = {
question: "What is your legal base of stay?",
answers: ["VISA", "Polish Recidence Card", "EU Recidence Card", "Other"]
}
var stepTwo = {
question: "When will your legal stay expire?",
answers: ["Less than 30 days", "From 1 to 3 months", "From 3 to 6 months", "Other"]
}
var stepThree = {
question: "What is your ground for TRC application?",
answers: ["Studies & Alumni", "Work contract", "Family reunification & kids", "Other"]
}
var steps = [stepOne, stepTwo, stepThree];
var currentStep = 0;
var quizQuestion = document.querySelector('.quiz__question');
var quizAnswers = document.querySelector('.quiz__answers');
var quizButtonNext = document.querySelector('.quiz__button_next');
function Quiz() {
quizQuestion.innerHTML = steps[currentStep].question;
for (let i = 0; i < steps[currentStep].answers.length; i++) {
const answersItems = steps[currentStep].answers[i];
const answersItemsElements = document.createElement('li');
answersItemsElements.classList.add('quiz__answer');
answersItemsElements.innerHTML = answersItems;
quizAnswers.appendChild(answersItemsElements);
}
}
Quiz();