Strings concatenating in Java

String s1 = "three";
String s2 = "two";
String s3 = s1 + ", " + s2;
s3 += ", one";
String sGo = s3.concat(", ").concat("go!");
//sGo is "three, two, one, go!"