Update `customOrders` to also accept a [standard sort compare function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#parameters). E.g. ```js sortArray(partsOfTheDay, { order: 'time', customOrders: { time: (a, b) => return a > b ? 1 : -1 // etc } }) ```