Concatenate a String with itself Multiple Times

string str = 'banana';
string result = str * 4;

//result = bananabananabananabanana