* symbol for multiplication of two numbers.
Example
```js
myVar = 13 * 13; // assigned 169
```
0 so that product will equal 80.
product should be equal to 80.
    testString: assert(product === 80);
  - text: You should use the * operator.
    testString: assert(/\*/.test(code));
```