--- id: 5ddb965c65d27e1512d44dda title: Part 67 challengeType: 0 dashedName: part-67 --- # --description-- Now notice that if you click the "Clear" button, the `output` element is empty, but it still has a border around it. This is because we previously added the `bordered-class` class to this element. Remove the `bordered-class` class. For example: ```js document.getElementById('my-div').classList.remove('my-class') ``` # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match( /document\.getElementById\([\'\"\`]output[\'\"\`]\)\.classList\.remove\([\'\"\`]bordered-class[\'\"\`]\)/ ) ); ``` # --seed-- ## --before-user-code-- ```html