String Concatenation with &
Sub str1() string1 = "5" string2 = "5" newStr = string1 & string2 End Sub