Basic JavaScript - Selecting from Many Options with Switch Statements

Tell us what’s happening:
code is working but i am not able to go to the next step

Your code so far

function caseInSwitch(val) {
  let answer = "";
  // Only change code below this line

switch (val) {
  case 1:
  console.log("alpha");
  break;

  case 2:
  console.log("beta");
  break;

  case 3:
  console.log("gamma");
  break;

  case 4:
  console.log("delta");
  break;
  
}


  // Only change code above this line
  return answer;
  
}



Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Selecting from Many Options with Switch Statements

Link to the challenge:

Your code isn’t working per the instructions. You are returning this value without changing it

Thanks Jeremy, thanks for your help :innocent: :blush:

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.