Normally there's a trick in Python to easily reverse a string (that also works on arrays):
str = "some string" str[::-1]
This appears to not work on the June 4th Coding Challenge. I'm curious as to why?