{
var compare = function(choice1, choice2) {
if (choice1 === choice2){
return "The result is a tie!";
}
else if (choice1 === "rock") {
if (choice2 === "scissors"){
return "rock wins";
}
else {return "paper wins";}
}
else if (choice1 === "scissors") {
if(choice2 === "paper") {
return "scissors win";
}
else {return "rock wins";}
}
<do not remove the three backticks above>