Tell us what’s happening:
Your code so far
function testSize(num) {
// Only change code below this line
else if (num < 5)
return "Tiny";
else if (num < 10);
return "Small";
else if (num < 15);
return "Medium";
else if (num > 20);
return "Large";
else if (num >= 20);
return "Huge";
// Only change code above this line
}
// Change this value to test
testSize(7);