Counting Cards!

Tell us what’s happening:

So i did what other people were saying worked for them but it’s not working for me, i just want to pass this one and move on

Your code so far

var count = 0;

function cc(card) {
  // Only change code below this line
  if (card <=6) {
    count++;
  }
  else if (card>=7 && card<=9) {
  }
  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');

Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/counting-cards

thank you
i got it finally