Are you saying:
you tried the example Ian posted and it works though you do not understand how it works? or
you tried the example and it doesn't work and you do not know why? or
you did not try the example because you do not understand?
It certainly makes sense to me but it is difficult to help you when we do not know what the problem is.
In all spreadsheet programs I am aware of there is a concatenate operator (the "&") that joins text.
if you type
=A1&" Hi"
then whatever is in cell A1 will be concatenated with (joined to) the test " Hi"
so... is A1 contains "Wayne", then result will be "Wayne Hi"
if A1 contains "Apple" then the result will be "Apple Hi"
if A1 contains "Apple" and B1 contains "Banana" you can join then using the formula:
=A1&B1
this will result in "AppleBanana"
if you want a space between then you could use:
= A1 & " " & B1
if you want parenthesis around the word in call B1 you could use:
= A1 & " ("& B1 & ")"