local tableThatHoldsTablesWithData = {}
local tableWithData = {
name = 'dr doobinfsmurch'
}
-- two methods
table.insert(tableThatHoldsTablesWithData, tableWithData)
-- automatically finds an empty index and adds the table to it
tableThatHoldsTablesWithData[1] = tableWithData
-- ofc change the one to whatever index you want