# Spot the bug - #155: Scoreboard Sorter

**URL:** https://forum.kirupa.com/t/spot-the-bug-155-scoreboard-sorter/683470
**Category:** web dev
**Created:** [September 25, 2026, 7:00am UTC](https://forum.kirupa.com/t/spot-the-bug-155-scoreboard-sorter/683470 "2026-09-25T07:00:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Quelly](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/quelly/32/31386_2.png) [@Quelly](https://forum.kirupa.com/u/Quelly)
#### Post date: [September 25, 2026, 7:00am UTC](https://forum.kirupa.com/t/spot-the-bug-155-scoreboard-sorter/683470/1 "2026-09-25T07:00:09Z")

</div>

Sorting bug hiding in here.

```js
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.
