Spot the bug - #155: Scoreboard Sorter

Sorting bug hiding in here.

const scores = [12, 4, 30, 21];
scores.sort((a, b) => a > b);

console.log(scores);

Reply with what is broken and how you would fix it.