lua sort table with keys code example Example: lua sort local t = {1, 2, 3, 4, 5}; table.sort(t, function(a, b) return a < b end);