function testSize(num) {
// Only change code below this line
if (num < 5) {
return "Tiny"
} else if (num < 10) {
return "Small"
} else if (num < 15) {
return "Medium"
} else if (num < 20) {
return "Large"
} else (num >= 20) {
return "Huge"
}
return "Change Me";
// Only change code above this line
I tried this with and without the semi ; after each. also with each but excluding the last return. Its probably some dumb mistake I’m making. is there anyone that can help me figure out what?