--- id: 5900f48d1000cf542c50ff9f challengeType: 5 title: 'Problem 288: An enormous factorial' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler288(), 605857431263982000, "euler288() should return 605857431263982000.");' ```
## Challenge Seed
```js function euler288() { // Good luck! return true; } euler288(); ```
## Solution
```js // solution required ```