--- id: 5900f3c51000cf542c50fed6 challengeType: 5 title: 'Problem 88: Product-sum numbers' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler88(), 7587457, "euler88() should return 7587457.");' ```
## Challenge Seed
```js function euler88() { // Good luck! return true; } euler88(); ```
## Solution
```js // solution required ```