The last challenge showed how to search for digits using the shortcut <code>\d</code> with a lowercase <code>d</code>. You can also search for non-digits using a similar shortcut that uses an uppercase <code>D</code> instead.
The shortcut to look for non-digit characters is <code>\D</code>. This is equal to the character class <code>[^0-9]</code>, which looks for a single character that is not a number between zero and nine.
</section>
## Instructions
<sectionid='instructions'>
Use the shorthand character class for non-digits <code>\D</code> to count how many non-digits are in movie titles.
</section>
## Tests
<sectionid='tests'>
```yml
tests:
- text: Your regex should use the shortcut character to match non-digit characters
testString: 'assert("2001: A Space Odyssey".match(noNumRegex).length == 17, "Your regex should find 17 non-digits in <code>"2001: A Space Odyssey"</code>.");'