Platform-Independent Line Breaks
finalString = "physical" + System.lineSeparator() + "distancing";
System.out.println(finalString);
Output:
physical
distancing
Notes:
Java 6: System.getProperty("line.separator")
Java 7 & above: System.lineSeparator()