I would like to store my data into a n*6 table, and the table would be like
Test1 Test2 Test3 Test4 Test5 Test6
1 abc sss efg 1000 ijk
2 cde yyy ghi 2000 klm
...
... and so on
...
I have declare the table at first
local myTable = {"Test1", "Test2", "Test3", "Test4", "Test5", "Test6"}
then how should I make n*6 table for storing my data with regular format?
any information will be appreciated!!