collectionsJavaScriptCollectionsEasyHow do you convert a Set to an array?1Array.from(mySet) or [...mySet]2mySet.toArray()3JSON.parse(mySet)4mySet.values() directly as an arrayBack to list