--- id: 5900f4f21000cf542c510004 challengeType: 5 title: 'Problem 389: Platonic Dice' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler389(), 2406376.3623, "euler389() should return 2406376.3623.");' ```
## Challenge Seed
```js function euler389() { // Good luck! return true; } euler389(); ```
## Solution
```js // solution required ```