--- id: 5d8a4cfbe6b6180ed9a1ca3c title: Step 95 challengeType: 0 dashedName: step-95 --- # --description-- You want the array passed to `pie` to be an array of key/value objects for the 2020 followers. `d3.entries` will build that array for you. Here's how that looks: ```js d3.entries(data[8].followers)) ``` The array it builds looks like this: ```js [ { key: 'twitter', value: 2845 }, { key: 'tumblr', value: 2040 }, { key: 'instagram', value: 4801 } ] ``` This is where the `value` comes from in your `pie` variable. Add the `d3.entries` function as your `pie` argument. Use it to create the above array. # --hints-- test-text ```js assert( /const pieGraphData = pieGraph\.selectAll\((`|'|")pieSlices\1\)\s*\.\s*data\s*\(pie\s*\(\s*d3\s*\.\s*entries\s*\(\s*data\s*\[\s*8\s*\]\s*\.\s*followers\s*\)\s*\)\s*\)/g.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```