public class FieldyHelloWorld { public static String str = "Hello"; public static void main(String[] args) { str += " World"; System.out.println(str); } }