I'm forgetting this again, How do I iterate over tables (without keys) again?
Is this what you are referring to?
local test = {1,2,3,4} -- Table with random numbers for i, v in pairs(test) do -- using a loop to iterate over each value in the table print(i) -- printing each value out in the output end