Reversed Strings Description Complete the solution so that it reverses the string passed into it. 'world' => 'dlrow' 'word' => 'drow' My Solution def solution(str) str.reverse end