I have a problem with the counting cards exercise

Tell us what’s happening:
I’m not able to say what is wrong, it gives me the third and fourth errors. The code looks pretty right to me .

Your code so far


var count = 0;

function cc(card) {
 // Only change code below this line
switch (card) {
  case 2: 
  count ++;
  break; 

  case 3:
  count ++;
  break;

  case 4:
  count ++;
  break;

  case 5:
  count ++;
  break;

  case 6:
  count++;
  break;
  
  case 10:
  count --;
  break;

  case "J":
  count --;
  break;

  case "Q":
  count --;
  breaK;

  case "K":
  count --;
  break;

  case "A":
  count --;
  break;
  }

if (count > 0) {
 return count + "  Bet"; 
} else if (count <= 0) { 
 return count + "  Hold";
} else { 
 return " Change Me";
 }

 // Only change code above this line}

cc(2); cc(3); cc(7); cc('K'); cc('A');
}

Your browser information:

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

Challenge: Counting Cards

Link to the challenge:

you have an extra space in the output

also, you may consider cobsolidating a bit all those cases, see Multiple Identical Options In Switch Statements

You have a typo in break

I’m so dumb, thank you so much :joy:

The space is necessary in that challange , thank you as well :grin:

the challenge asks for a single space, you have two spaces - I assumed that may be an issue