--- id: 5d8a4cfbe6b6180ed9a1ca3a title: Step 93 challengeType: 0 dashedName: step-93 --- # --description-- Create a new `const` named `pieGraphData` and set the value equal to `pieGraph.selectAll('pieSlices')`. This is an empty selection similar circles you created earlier. # --hints-- test-text ```js assert( /const\s*pieGraphData\s*=\s*pieGraph\s*\.\s*selectAll\s*\(\s*(`|'|")pieSlices\1\s*\)/g.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html