"Hello"
"Hello" + "There"
"     Where areyou   today         ".trim()
"Where are you today".trim()
"aaaaAAAA" + "BBBBbbbb"
"a string".toUpperCase()
"Foo on".toUpperCase() + " hello"
"BAM BAM BAM " + "BOOM".toLowerCase()
"This is really long".length()
"Some would say this is short".length()
"Friends".toUpperCase() + "this has twenty eight letters".length()
"Big".toUpperCase().toLowerCase()
"What is the substring?".substring(2, 6)
"How many letters?".substring(10)
"This is a tricky one".toUpperCase().substring(5, 10).length()
"I Love Lucy".lastIndexOf('L')
"Animal farm".substring("George Orwell".lastIndexOf('o'))
"Hello"
is the input,
you are not allowed to write answers like
"Hello".toLowerCase() + "Hello".toUpperCase()
.
"This is a string"
"THIS IS A STRING"
  Follow this link to check your answer.
"Hello there"
and " Sailor"
"Hello there Sailor"
"Do you know?"
and "What "
"What do you know?"
" What is "
and " your NAME?"
"What isyour name?"
  Follow this link to check your answer.
"This one is "
and " IS tricky"
"This one IS tricky"
"The last"
"LAST"
"FOO BAR CITY"
and "This city is BIG"
Output: "foo bar CITY"
"Bilbo"
and "Gandalf"
"bil**G*nd*lf"
"save the dolphins"
and "we love them"
"THE DOLPHINS love"