So I've built a custom array of users like such:
[["user1",432],["user1",53],["user9",58],["user5",75],["user3",62]]
I want to sort them by the 2n'd value in each array, from largest to smallest. I have a feeling using sort or sort_by for arrays is the way to do this, but I'm not really sure how to accomplish it