I keep having the same error string should return -5 Hold , 1 Bet, -1 Hold

Tell us what’s happening:
Describe your issue in detail here.

   **Your code so far**

var count = 0;

function cc(card) {
 // Only change code below this line
switch (card){
case 2 :
case 3:
case 4:
case 5:
case 6:
count++;
break;
case  10:
case "j":
case "Q":
case "k":
case "A":
count--;
break;
} 
if (count >0) {
   return count+ " Bet";
 } else if (count <= 0) {
 return count+ " Hold";
 }
return count;
 // 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/93.0.4577.82 Safari/537.36

Challenge: Counting Cards

Link to the challenge:

I have the same issue. It makes me so mad I am seriously considering jumping out my window entering a 6 stories long freefall, and then my eventual death. I want to seriously killmyself and others. I am losing myself, i am going insane. Please someone fix this. I beg you. help. me.

remember that capitalization matters

hey @furrygaming123xxx

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

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