--- id: 5d8a4cfbe6b6180ed9a1ca2f title: Step 82 challengeType: 0 dashedName: step-82 --- # --description-- Use `append` to add a `div` element to the selection. This will put a div as another child of the dashboard container to hold the pie graph and legend. # --hints-- test-text ```js assert( /const rightDashboard = d3\.select\((`|'|")\.dashboard\1\)\s*\.append\s*\(\s*(`|'|")div\2\)/g.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```