--- id: 60b69a66b6ddb80858c51581 title: Step 11 challengeType: 0 dashedName: step-11 --- # --description-- Below your `back-wall` element, create a `div` with a `class` of `characters`. This is where you will be creating your painting's characters. # --hints-- You should only add one new `div` element. ```js assert(document.querySelectorAll('div').length === 2); ``` Your new `div` element should come after your `#back-wall` element. ```js assert(document.querySelector('#back-wall')?.nextElementSibling?.localName === 'div'); ``` Your new `div` element should have the `class` set to `characters`. ```js assert(document.querySelectorAll('div')?.[1]?.classList?.contains('characters')); ``` # --seed-- ## --seed-contents-- ```html