Reverses the string. Example: "hello" → "olleh"
"hello"
"olleh"
String reverse() => split('').reversed.join();