Instead of ```js class Card() { constructor() {}, method() {}, _private() {} } ``` we should be doing ```js module.exports = function cardFactory() { // constructor code let private = () => {}; return { method: function method() {} }; }; ```