Question from the Ruby test

What is the output of the following code? class Person attr_accessor :name end person = Person.new person.name = 'John' puts person.name