A Set of ObjectsConsider the following Set of objects spread into a new array. What gets logged? const mySet = new Set([{ a: 1 }, { a: 1 }]); const result = [...mySet]; console.log(result); Select one:[{a: 1}, {a: 1}][{a: 1}]Submit