Additions:
Will sort an array in ascending order (smallest value first).
temp.array = {"c", 1, "a", 2, "b", 3};
... Will output {1, 2, 3, "a", "b", "c"} in RC when on the serverside, or in your #%F2#% menu when on the clientside.
temp.array = {"c", 1, "a", 2, "b", 3};
... Will output {1, 2, 3, "a", "b", "c"} in RC when on the serverside, or in your #%F2#% menu when on the clientside.
Deletions:
temp.array = {"c", "a", "b"};
... Will output {"a", "b", "c"} in RC when on the serverside, or in your #%F2#% menu when on the clientside.