This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Edwin
almost 9 years

6/7 problem -Not sure what I'm doing wrong, please help.

console.log (“Are you ready to play?”); confirm(“I understand confirm!”); varz age = prompt(“What’s your age?”);

if(age < 13) { console.log (“You can play, but the maker takes no responsibility!”); } else(age > 13) { console.log(“Lucky you; you’re old enough to play this game!”); console.log(“You are at a Justin Bieber concert, and you hear this lyric ‘Lace my shoes off, start racing.’”); } console.log (“Suddenly, Bieber stops and says, ‘Who wants to race me?’”); var userAnswer=prompt(“Do you want to race Bieber on stage?”); var feedback = prompt(“Message”); if (userAnswer===”Yes”) { console.log(“You and Bieber start racing. It’s neck and neck! You win by a shoelace!”); } else (userAnswer=”No”) { console.log(“Oh no! Bieber shakes his head and sings ‘I set a pace, so I can race without pacing.’”); }

Answer 554d111786f552606f000383

0 votes

Permalink

you could try

else (userAnswer===”No”)

But I used

else (userAnswer !== “yes”)

and it worked

points
Submitted by Dariene
almost 9 years