What array is obtained when executing the following code?
const arr = [1, 2, 11, 22]; arr.sort();
[1, 11, 2, 22]
[1, 2, 11, 22]
[2, 1, 22, 11]
[22, 11, 2, 1]