>> > Objects are just things that can be assigned to variables -- you can also > invoke methods on them, and they have classes. > > So strings, like nearly everything in Ruby, are objects. > > What are you expecting it to output? > hello = "world" puts "hello".to_object_variable will expect to print "world". Thanks.