--- id: 5900f4231000cf542c50ff36 challengeType: 5 title: 'Problem 183: Maximum product of parts' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler183(), 48861552, "euler183() should return 48861552.");' ```
## Challenge Seed
```js function euler183() { // Good luck! return true; } euler183(); ```
## Solution
```js // solution required ```