--- id: cf1231c1c11feddfaeb5bdef title: Multiply Two Numbers with JavaScript challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(product === 80,"Make the variable product equal 80");' - text: '' testString: 'assert(/\*/.test(code), "Use the * operator");' ```
## Challenge Seed
```js var product = 8 * 0; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```