What does `setImmediate(fn, a, b)` do with the extra arguments, and what does it return?const id = setImmediate((x, y) => console.log(x + y), 2, 3);