Function JoinText(k, o) JoinText = k + " " + o End Function Sub functionCall() MsgBox JoinText("a", "b") End Sub