how to turn a table into string and back code example
Example: lua table to string
table.concat(list: table, sep: string, i: integer, j: integer)
local tbl = { 'Hello', 'World', 'this', 'is', 'awesome'}
print(table.concat(tbl, ' '))
-> Hello World this is awesome