The console states that there is an unexpected { in my code. I went over the syntax several times and cannot seem to find it.
var userChoice = prompt("Do you choose rock, paper, or scissors?");
var computerChoice = Math.random(1);
if (computerChoice <= 0.33){
computerChoice = "rock";
} elseif (computerChoice <= 0.67 && computerChoice >= 0.34) {
computerChoice = "paper";
} else {
computerChoice = "scissors";
}