table:remove()
This is a helpful way to remove items in a list table. See Lua table as list.
You use it like this:
local MyTable = {1,4,6,7,9,10}
trace(MyTable)
table.remove(MyTable, 3)
trace(MyTable)
Try the above code fragment in the Developing in the Translator