title: Comparison with the Strict Inequality Operator
challengeType: 1
---
## Description
<sectionid='description'>
The strict inequality operator (<code>!==</code>) is the logical opposite of the strict equality operator. It means "Strictly Not Equal" and returns <code>false</code> where strict equality would return <code>true</code> and <em>vice versa</em>. Strict inequality will not convert data types.
Add the <code>strict inequality operator</code> to the <code>if</code> statement so the function will return "Not Equal" when <code>val</code> is not strictly equal to <code>17</code>
</section>
## Tests
<sectionid='tests'>
```yml
- text: <code>testStrictNotEqual(17)</code> should return "Equal"