Roblox fait des tableaux

-- Construct an array with three items
local testArray = {"A string", 3.14159, workspace.Part}

print(testArray[1])
print(testArray[2])
print(testArray[3])
Hungry Hamerkop