So I just started out on this codeacademy website learning Javascript. I got to the if/else statements and my first one ran fine but my second one, even though it was entirely identical to the first one apart from the string that was being console logged, would not run.
Here it is:
if (54>67);
{
console.log("I am right");
}
else;
{
console.log("I am wrong");
}
It keeps giving me a red x next to the "else" saying "Expected an identifier and instead saw 'else'"
Please help me if you can.