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