--- title: Averages-Pythagorean means id: 594d966a1467eb84194f0086 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof pythagoreanMeans === "function", "pythagoreanMeans is a function.");' - text: '' testString: 'assert.deepEqual(pythagoreanMeans(range1), answer1, "pythagoreanMeans([1, 2, ..., 10]) should equal the same output above.");' ```
## Challenge Seed
```js function pythagoreanMeans (rangeArr) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```