After this code, what do `M.helper` and reopening to redefine the instance method reveal about `module_function`?module M def helper; "v1"; end module_function :helper def helper; "v2"; end end p M.helper