Need Help on Counting Cards

I need help on the counting cards challenge.

var count = 0;

function cc(card) {
  // Only change code below this line
  if (card == 2 || card == 3 || card == 4 || card == 5 || card == 6) {
    count++;
  } else {
    count--;
  }
  if (count > 0) {
    return count + "Bet";
  } else {
    return count + "Hold";
  }
  // 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');

Any help would be appreciated

There are two errors. The first is how you’re changing count. Re-read the instructions carefully because you’ve missed something. The second is that you’re not adding a space between count and your string when returning the final value. For instance, if count is 2, your function will return 2Bet.

Code works now. thx for the help