Ruby - Modules and Mixins
Identify the error in the following Ruby code:
module Walk
def walk
"Walking"
end
end
class Person
extend Walk
end
puts Person.new.walk