After you've counted the cards, use an `if` statement to check the value of **count**. Also, make sure your `return` has a space between the number and the string.
· The function first evaluates `if` the condition `card` is a value greater than `1` and lower than `7`, in which case it increments `count` by one.
· Then if the card is `10` or higher it decrements `count` by one.
· The variable `regex` is a [regular expression](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp) representing values (letters) for the higher cards.
· The `else` statement checks those values with the `|| (logical OR)` operator; first for `10` and then for any string that matches the regular expression using [String.match()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match).
*<ahref='https://en.wikipedia.org/wiki/Card_counting'target='_blank'rel='nofollow'>Card counting at Wikipedia</a>
*<ahref='http://www.freecodecamp.com/challenges/selecting-from-many-options-with-switch-statements'target='_blank'rel='nofollow'>Challenge: Selecting from many options with Switch Statements</a>
*<ahref='http://www.freecodecamp.com/challenges/chaining-if-else-statements'target='_blank'rel='nofollow'>Challenge: Chaining If Else Statements</a>
*<ahref='http://www.freecodecamp.com/challenges/increment-a-number-with-javascript'target='_blank'rel='nofollow'>Challenge: Increment a Number with JavaScript</a>