--- id: 5d8a4cfbe6b6180ed9a1ca39 title: Part 92 challengeType: 0 dashedName: part-92 --- # --description-- Chain a `value` function to `pie` and pass it `d => d.value`. Each piece of data(`d`) will have a `key`(platform) and a `value`(number of followers), you want to return the number of followers here. The pie function will create an array of objects from these values that describe the angles and sizes the pie chart needs. In a few steps, you will make an array out of your data variable that will be passed to this function. # --hints-- test-text ```js assert( /const pie = d3\.pie\(\)\s*\.\s*value\s*\(\s*d\s*=>\s*d\.value\s*\)/g.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```