Create a function that takes a string as its argument and returns the string in reversed order.
Reverse("Hello World") ➞ "dlroW olleH"
Reverse("The quick brown fox.") ➞ ".xof nworb kciuq ehT"
Reverse("Edabit is really helpful!") ➞ "!lufpleh yllaer si tibadE"You can expect a valid string for all test cases.