why am i getting error 1083: syntax error: else is unexpected? this is the code im using. it has to do with the 2nd else correct?
function goNext(e:MouseEvent):void
{
if(!option1.selected == true){
option2.enabled == false || option3.enabled == false;
answer.text = “”;
answer.text = “Correct!”;
nextButton.visible = true;
}else {
(option2.selected == true);
option2.enabled == false
answer.text = "";
answer.text = "Wrong try again!";
}
else
{
(option3.selected == true);
answer.text = "";
answer.text = "Wrong try again!";
}
}
}