Hmm, welcome to the DevForum. Not sure what you meant but the person above just shows you the way to what we would call combining strings, or string concatenation and that’s one of the steps.
If we take a look at it, you need to define a variable for your default word, it would be.
local originalWord = "Potato"
local otherWord = "Apple"
print(originalWord..otherWord)
local alphabet = {"a", "b", "c"} --etc
local mystring = "Hello World!"
local function addletter ()
mystring = mystring .. alphabet[math.random(1, #alphabet)]
end
like sloth said, this is called string concatenation under the umbrella term of string manipulation. it’s an important skill and you should try to be well-versed in it.