What array is obtained when executing the following code?
const numbers = [10, 1, 5]; numbers.sort((a, b) => b - a);
[5, 10, 1]
[1, 10, 5]
[10, 5, 1]
[1, 5, 10]