--- id: 5900f3ca1000cf542c50fedc challengeType: 5 title: 'Problem 93: Arithmetic expressions' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler93(), 1258, "euler93() should return 1258.");' ```
## Challenge Seed
```js function euler93() { // Good luck! return true; } euler93(); ```
## Solution
```js // solution required ```