***actually according to Mozilla it doesn’t matter where you place default case as long you type break statement after it ****
function switchOfStuff(val) {
var answer = “”;
// Only change code below this line
switch(val){
default:
answer = “stuff”;
break;
case ‘a’:
answer= “apple”;
break;
case ‘b’:
answer = “bird”;
break;
case ‘c’:
answer = “cat”;
break;
}
// Only change code above this line
return answer;
}
// Change this value to test
switchOfStuff(1);