--- id: 60b69a66b6ddb80858c51582 title: Step 12 challengeType: 0 dashedName: step-12 --- # --description-- Inside that `characters` element, create another `div` with an `id` of `offwhite-character`. # --hints-- You should only create 1 additional `div` element. ```js assert(document.querySelectorAll('div').length === 3); ``` Your new `div` element should be nested in your `.characters` element. ```js assert(document.querySelector('.characters div')); ``` Your new `div` element should have an `id` of `offwhite-character`. ```js assert(document.querySelector('.characters div')?.getAttribute('id') === 'offwhite-character'); ``` # --seed-- ## --seed-contents-- ```html