Comparison with the Equality Operator testing

I’m having problems with the bottom part that requires testing. Any suggestions?

// Setup
function testEqual(val) {
if (val == 12);{ // Change this line
return “Equal”;
}
return “Not Equal”;
}

// Change this value to test
testEqual (10);

MindofThomas Thank Thank Thank soooooo much. You the best!!!