What happens if you try to add a duplicate object to a set?
const set = new Set(); set.add({}).add({});
None of the above
The set will have a size of 1
The set will have a size of 2
An error will be thrown