We call methods in a module like we call class methods, except that we call them directly on the module.

Whoa! Why does this throw an error? We call the make_noise method directly on Noise because we can't create instances of modules, right?

Might it be that we have to specify the module in order to call make_noise?