When using the sort method in JavaScript, it doesn't give me the right result. What could be the reason for this? Code below and its output:
let numbers = [14, -124, 68, 2, 56, -111, 0, 69, 9];
numbers.sort();
console.log(numbers);
Output: [-111, -124, 0, 14, 2, 56, 68, 69, 9]