Ruby - String Operations
The following Ruby code is intended to convert a string
name to lowercase and remove spaces at the start and end. What is wrong?name = " RubyLang " name.downcase.strip
