Reversed Strings
Instructions:
Complete the solution so that it reverses the string passed into it.'world' => 'dlrow'
'word' => 'drow'
Thoughts:
I converted the string into an array to utilize the reverse()...