--- id: 5d8a4cfbe6b6180ed9a1ca30 title: Step 83 challengeType: 0 dashedName: step-83 --- # --description-- Create a new `const` named `pieGraph` and set it equal to `rightDashboard.append('svg')`. This will add an SVG element for the pie graph as a child of the div you just added. The pie graph will have three slices, one for each platform. It will display a percentage of how many followers each platform has for the displayed year. # --hints-- test-text ```js assert( /const\s*pieGraph\s*=\s*rightDashboard\s*\.\s*append\s*\((`|'|")svg\1\s*\)/g.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html