What will be the output of the following code?
console.log(Array.from(mySet)); const mySet = new Set([1, 2, 3]);
[1, 2, 3]
undefined
[]
[Set(3)]