A string is a sequence of alphabetical, numerical, or special characters. You can concatenate strings with the + operator.
string $what = "Whale";
string $title = "Great" + " White " + $what;
This creates the title variable with the contents Great White Whale.
MAXScript strings behave similar to strings in MEL:
what = "Whale"
title = "Great" + " White " + what