Hi guys, i have question.
This is my arraylist.
local t = {} t['a'] = 'a'; t['b'] = 'b'; t['c'] = 'c'; t['d'] = 'd';
In the loop with pairs and always return
a a d d c c b b
How can i shuffle this ? I want to change the order. Like this;
d d c c b b a a
thanks in advance.