Spot the bug in response-time ranking

from Sorting and searching
Node 24 beginner 4 min 1 issue to find

Find the bug in this response-time ranking.

JavaScript
const responseTimes = [2, 11, 3];
const ranked = responseTimes.sort();
console.log(ranked);
Open in playground
Report an error