I have a table here:
myTable = {{},{},{}}
so I insert items in it like this:
myTable[1][1] = "Question" myTable[2][1] = "Question Time" myTable[3][1] = "Time Question"
so here’s the catch, when I use “table.remove” it adjusts the table, like this:
table.remove(myTable,1)
and now when I use #myTable, it returns to 2, what I want is myTable[1] will be nil or just an empty cell( {} ), so when I use #myTable, it will return 3