Https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/counting-cards

Tell us what’s happening:

My code is not working I dont know why. I made it many times, even just like in the instruction of the video, but it just dont work. What did I miss? pls some help

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 'A':
 case 'J':
 case 'K':
 case 'Q':
   count--;
   break;
}

var answer = "hold";
 if (count > 0)
 {
 answer = "Bet";
 }


return count + " " + answer;


 // Only change code above this line
}

// Add/remove calls to test your function.
// Note: Only the last will display
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/78.0.3904.97 Safari/537.36.

Challenge: Counting Cards

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/counting-cards

You gorgot this part:
The function will then return a string with the current count and the string Bet if the count is positive, or Hold if the count is zero or negative. The current count and the player’s decision ( Bet or Hold ) should be separated by a single space.

Example Output
-3 Hold
5 Bet

I founded the problem… the latters were in wrong size