--- id: 587d8254367417b2b2512c71 title: Remove items from a set in ES6 challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(function(){var test = checkSet(); return test.has(1) && test.has(3) && test.has(4) && test.size === 3}, "Your Set should contain the values 1, 3, & 4");' ```
## Challenge Seed
```js function checkSet(){ var set = //Create a set with values 1, 2, 3, 4, & 5 //Remove the value 2 //Remove the value 5 //Return the set return set; } ```
## Solution
```js // solution required ```