Hey what’s wrong with this?
function testElseIf(val) {
if (val > 10) {
return "Greater than 10";
} else if (val < 5) {
return "Smaller than 5";
} else {
return "Between 5 and 10";
}
// Change this value to test
testElseIf(7);
Link to the challenge:
https://www.freecodecamp.org/challenges/introducing-else-if-statements