--- id: 587d8254367417b2b2512c70 title: Create and Add to Sets in ES6 challengeType: 1 videoUrl: '' localeTitle: Criar e adicionar a conjuntos no ES6 --- ## Description undefined ## Instructions
Para este exercĂ­cio, retorne um conjunto com os seguintes valores: 1, 2, 3, 'Taco', 'Cat', 'Awesome'
## Tests
```yml tests: - text: 'Seu Set deve conter apenas os valores 1, 2, 3, Taco, Cat, Awesome .' testString: 'assert((function(){var test = checkSet(); return (test.size == 6) && test.has(1) && test.has(2) && test.has(3) && test.has("Taco") && test.has("Cat") && test.has("Awesome");})(), "Your Set should only contain the values 1, 2, 3, Taco, Cat, Awesome.");' ```
## Challenge Seed
```js function checkSet() { var set = new Set([1, 2, 3, 3, 2, 1, 2, 3, 1]); // change code below this line // change code above this line console.log(set); return set; } checkSet(); ```
## Solution
```js // solution required ```