I encountered a syntax error while executing the code below:
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.'") }
The above lines are where the issue seems to be originating from, even though there is more code surrounding it.