What would be the result of running this code?
function add(x = 1, y = 2) { return x + y; } add();
undefined
0
3
null