--- id: 5900f4b01000cf542c50ffc2 challengeType: 5 title: 'Problem 323: Bitwise-OR operations on random integers' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler323(), 6.3551758451, "euler323() should return 6.3551758451.");' ```
## Challenge Seed
```js function euler323() { // Good luck! return true; } euler323(); ```
## Solution
```js // solution required ```