What value is printed when executing the following code?
const arr = [1, 2, 11, 22]; arr.sort(); console.log(arr[3]);
1
2
11
22