--- id: 5d8a4cfbe6b6180ed9a1ca38 title: Part 91 challengeType: 0 dashedName: part-91 --- # --description-- Create a new `const` named `pie` and set it equal to `d3.pie()`. This is the D3 pie chart generator. # --hints-- test-text ```js assert(/const\s*pie\s*=\s*d3\s*\.\s*pie\s*\(\s*\)/g.test(code)); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```