Tell us what’s happening:
Describe your issue in detail here.
what am I doing wrong here I just follow the same steps showed on the instruction video and the code is the same
**Your code so far**
function sequentialSizes(val) {
let answer = "";
// Only change code below this line
case 1:
case 2:
case 3:
answer = "Low";
break;
case 4:
case 5:
case 6:
answer = "Mid";
break;
case 7:
case 8:
case 9:
answer = "High";
break;
// Only change code above this line
return answer;
}
sequentialSizes(1);
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.53
Challenge: Multiple Identical Options in Switch Statements
Link to the challenge: