Ich möchte in LUA Code schreiben.
Habe mir das ausgedacht.
id ={1,2,3,4,5,6}
--id = {183,192,195,198,189,186}
local randomID = {}; local zeile = 1;
for i = 1,#id do
table.insert(randomID,zeile, id[i])
zeile = math.random (1, #randomID)
end
print (json.encode(randomID))