What value is printed when executing the following code?
const numbers = [10, 1, 5];
numbers.sort((a, b) => b - a);
console.log(numbers[0]);
What value is printed when executing the following code?
const numbers = [10, 1, 5];
numbers.sort((a, b) => b - a);
console.log(numbers[0]);