SchoolOfCode / week-2-debugging-customer-challenge-bc18-room10

bootcamp-18-week-2-debugging-customer-challenge-workshop_debugging-kata created by GitHub Classroom
0 stars 0 forks source link

Update score #9 #8

Closed Holl4444 closed 20 hours ago

Holl4444 commented 20 hours ago

'Your final score' currently reports randomNumber:

if (!playAgain) { alert(Game over. Your final score is ${randomNumber}.); }

Holl4444 commented 20 hours ago

Replaced randomNumber variable with correct score variable in alert on line 23:

if (!playAgain) { alert(Game over. Your final score is ${score}.); }