All the examples show: ``` javascript var stairs = require('stairs'); stairs.step(/*...*/) // etc. ``` But `require('stairs')` actually returns the class `Stairs`, so it should be more like: ``` javascript var stairs = new (require('stairs'))() stairs.step(/* etc. */) ```