--- id: 5900f3b61000cf542c50fec9 challengeType: 5 title: 'Problem 74: Digit factorial chains' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler74(), 402, "euler74() should return 402.");' ```
## Challenge Seed
```js function euler74() { // Good luck! return true; } euler74(); ```
## Solution
```js // solution required ```