Question about strings

I am really sorry about that kind of easy question maybe i shouldn’t open a discussion but im stuck. I couldn’t find it at documents.
name = “michael”
surname = “jackson”
fullname = name+surname
It doesn’t work. What is the true sentence?

@Ralp7 When you want to put strings together, you need to use …
fullname=name..surname or fullname=name.." "..surname

Okey i got it. Thank you

@Ralp7 - for questions about the basic language (ie not the actual graphics), Google for Lua tutorials and solutions, because it is the underlying language.

Remember! It’s Lua, not Java :smiley: