table.insert
Example
Demonstrates the use of this function.
sentence = { "hello", "there", "my", "name", "is", "drakehawke" }
table.insert( sentence, "lol" )
table.insert( sentence, 6, "not" )
PrintTable( sentence )
Output:
1 = hello
2 = there
3 = my
4 = name
5 = is
6 = not
7 = drakehawke
8 = lol