--- title: Averages-Root mean square id: 594da033de4190850b893874 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof rms === "function", "rms is a function.");' - text: '' testString: 'assert.equal(rms(arr1), answer1, "rms([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) should equal 6.2048368229954285.");' ```
## Challenge Seed
```js function rms (arr) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```