- symbol for subtraction.
Example
```js
myVar = 12 - 6; // assigned 6
```
0 so the difference is 12.
difference should be equal to 12.
testString: assert(difference === 12);
- text: You should only subtract one number from 45.
testString: assert(/difference=45-33;?/.test(code.replace(/\s/g, '')));
```