fix game bug notif

This commit is contained in:
Carolus Bramantyo Seno Mahesworo 2025-12-06 17:21:39 +07:00
parent d60a408b08
commit 62b04760f0

View File

@ -119,7 +119,7 @@ function selectAnswer(e){
function showScore(){ function showScore(){
resetState(); resetState();
const show = questionElement.innerHTML = `you scored ${score} out of ${questions.length}!`; const show = questionElement.innerHTML = `you scored ${score} out of 200 !`;
postScore(score); postScore(score);
} }