--- id: 5900f4291000cf542c50ff3b challengeType: 5 title: 'Problem 188: The hyperexponentiation of a number' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler188(), 95962097, "euler188() should return 95962097.");' ```
## Challenge Seed
```js function euler188() { // Good luck! return true; } euler188(); ```
## Solution
```js // solution required ```