---
id: 64005ab13a78eb062547c12d
title: Step 8
challengeType: 0
dashedName: step-8
---
# --description--
Next, within the body of the `if` statement, call the `checkUserInput()` function. After this, if you enter numbers into the number input and press the `Enter` / `Return` key, you should see numbers logged to the console.
# --hints--
You should call the `checkUserInput()` function within the body of your `if` statement.
```js
assert.match(code, /if\s*\(\s*e\s*\.\s*key\s*===?\s*('|"|`)Enter\1\s*\)\s*\{\s*checkUserInput\(\s*\)\s*;?\s*\}/);
```
# --seed--
## --seed-contents--
```html