I am currently learning about if/else statements on Codecademy and keep encountering an error that says, "SyntaxError: Unexpected token else". Can someone please assist me? Below is the code I am working on:
// Confirm if the user is ready to play
confirm("I am ready to play!");
var age = prompt("What is your age?");
if (age < 13) {
console.log("You are allowed to play, but I take no responsibility");
} else {
confirm("Play On!");
}
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?");
if (userAnswer === "yes") {
console.log("You and Bieber start racing. It's neck and neck! You win by a shoelace!");
} else {
console.log("Oh no! Bieber shakes his head and sings 'I set a pace, so I can race without pacing.'");
}