Okay, so i tried this for the challenge of ''Introducing Else Statements and it didn’t work, i tried the Hint but they did the same thing and it didn’t work for them either.
var result = “”;
// Only change code below this line
if (val > 5) {
result = "Bigger than 5";
}
else (val <= 5) {
result = "5 or smaller";
}
// Only change code above this line
return result;
}
// Change this value to test
testElse(5);```
**Link to the challenge:**
https://www.freecodecamp.org/challenges/introducing-else-statements
