function caseInSwitch(val) {
var answer = "";
// Only change code below this line
switch (val) {
case "alpha":
break;
case "beta":
break;
case "gamma":
break;
case "delta":
break;
}
// Only change code above this line
return answer;
}
// Change this value to test
caseInSwitch(1);
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.75 Safari/537.36.
since you are using val as the switching case, you want to make sure that answer is changed depending on what val is. so looking at the input in this case, val would be 1. When val is 1, answer should be alpha, and so on with the values and answers on the left sidebar of the problem.