How can we get this instance of the Person class to walk, say, 10 steps?

person = Person.new
5.times { person.walk }
person = Person.new
for i in 1..5 do
 person.walk
end
person = Person.new
person.steps += 10

Woot! We can use a for loop or the times method but we can't increase steps by 10 because we can only read the steps attribute.

So close! We can use a for loop or the times method but we can't increase steps by 10 because we can only read the steps attribute.