--- id: 5900f3c81000cf542c50fedb challengeType: 5 title: 'Problem 92: Square digit chains' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler92(), 8581146, "euler92() should return 8581146.");' ```
## Challenge Seed
```js function euler92() { // Good luck! return true; } euler92(); ```
## Solution
```js // solution required ```