Pregunta ${current + 1} de ${quizData.length}
⏳ Tiempo: 15s
${q.question}
Has acertado ${score} de ${quizData.length} preguntas
${message}
`;
}
window.restartQuiz = function() {
current = 0;
score = 0;
renderQuestion();
};
window.shareWhatsApp = function(text) {
const url = `https://api.whatsapp.com/send?text=${text}`;
window.open(url, ‘_blank’);
};
renderQuestion();
})();