What is the output of the following code?
const set = new Set([1, 1, 2, 2, 3]); console.log(set.size);
3
4
2
5