--- id: 587d8255367417b2b2512c73 title: Use Spread and Notes for ES5 Set() Integration challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert((function(){var test = checkSet(new Set([1,2,3,4,5,6,7])); test === [ 1, 2, 3, 4, 5, 6, 7 ]})(), "Your Set was returned correctly!");' ```
## Challenge Seed
```js function checkSet(set){ // change code below this line // change code above this line } ```
## Solution
```js // solution required ```