Adding character to a table item

I want to add character to table item. Using this code will make an error:

local testStr = testTable[1] + " "
print(testStr)

Is there a way to add space character to table item?

Thanks for your help,
Jermartyno

In lua you concatenate strings like this:

local testStr = testTable[1].." "