Replacing If Else Chains with Switch I can't pass the test

Tell us what’s happening:

I tried to follow the tutorial but could’t pass it.
I set the name bob to “bob”
and tried to follow the example

Your code so far


function chainToSwitch(val) {
  var answer = "";
  // Only change code below this line
  switch(val) {
     case "bob":
    answer = "Marley";
    break;
  case 42:
    answer = "The Answer";
    break;
case 1
    answer = "There is no #1";
    break;
    case 99:
    answer = "Missed me by this much!";
    break;
case 7:
    answer = "Ate Nine";
    break;
  }
  
  // Only change code above this line  
  return answer;  
}

// Change this value to test
chainToSwitch(7);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/replacing-if-else-chains-with-switch

Try adding the : after case 1.

1 Like

There is a colon missing in your code . case 1:

1 Like

Thank you shan :3 i feel like a complete idiot now XD

image