The "Reverser" takes a string as input and returns that string in reverse order, with the opposite case.
reverse("Hello World") ➞ "DLROw OLLEh"
reverse("ReVeRsE") ➞ "eSrEvEr"
reverse("Radar") ➞ "RADAr"
There will be no punctuation in any of the test cases.