compares the values within two strings on jShell
> String firstString = new String("hello");
java.lang.String firstString = "hello"
> String secondString = new String("hello");
java.lang.String secondString = "hello"
> boolean stringComparison = firstString.equals(secondString);
boolean stringComparison = true