So i’m stumped I know it has something to do with the letter as when it’s passed an “a” in the test the output is blank not even the default.
function switchOfStuff(val) {
var answer = "";
// Only change code below this line
switch (val){
case("a"):
answer="apple";
break;
case("b"):
answer="brid";
break;
case("c"):
answer="cat";
break;
default:
answer="stuff";
// Only change code above this line
return answer;
}}
// Change this value to test
switchOfStuff("a");