--- id: 5900f4f31000cf542c510006 challengeType: 5 title: 'Problem 391: Hopping Game' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler391(), 61029882288, "euler391() should return 61029882288.");' ```
## Challenge Seed
```js function euler391() { // Good luck! return true; } euler391(); ```
## Solution
```js // solution required ```