--- id: 5900f54c1000cf542c51005f challengeType: 5 title: 'Problem 480: The Last Question' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler480(), turnthestarson, "euler480() should return turnthestarson.");' ```
## Challenge Seed
```js function euler480() { // Good luck! return true; } euler480(); ```
## Solution
```js // solution required ```