table.sort(Table)
I believe they use quick sort for that, but you could use stuff such as insertion sort since your entry is small. It’d be faster but to be fair it wouldnt really matter since it so small lol
Worth noting that by default, table.sort sorts from least to greatest (little confusion in the title from the @OP). So you would actually need to provide a callback function for sorting: