Java fait une méthode qui relie deux chaînes

	public static String connectStrings(String string, String string2) {
		return string + string2;
	}