--- id: 5d8a4cfbe6b6180ed9a1ca48 title: Step 105 challengeType: 0 dashedName: step-105 --- # --description-- In the function you just created, create a `const` named `values`. Use the `d3.values` function to get the values of the 2020 followers and set the result to your `values` variable. Here's how to get the values: ```js d3.values(data[8].followers) ``` It will be an array with the values of the followers for the three platforms in 2020. Note that this "d function" has curly brackets. So you could `console.log(values)` in there to see it's value. # --hints-- test-text ```js assert( /const\s*values\s*=\s*d3\s*\.\s*values\s*\(\s*data\s*\[\s*8\s*\]\s*\.\s*followers\s*\);?/g.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```