--- id: 5900f5141000cf542c510027 challengeType: 5 title: 'Problem 423: Consecutive die throws' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler423(), 653972374, "euler423() should return 653972374.");' ```
## Challenge Seed
```js function euler423() { // Good luck! return true; } euler423(); ```
## Solution
```js // solution required ```