Ruby - Modules and Mixins
Identify the error in the following Ruby code that tries to use a module as a mixin:
module Helper
def help
"Helping"
end
end
class User
extend Helper
end
puts User.new.help