Arrow Functions

What is the output of this array sorting code with an arrow function comparator?
const numbers = [4, 2, 5, 1, 3];
numbers.sort((a, b) => a - b);
console.log(numbers);
Next Question (14/20)