--- id: 5d8a4cfbe6b6180ed9a1ca1c title: Part 63 challengeType: 0 dashedName: part-63 --- # --description-- Add the D3 `data` function to your selection and pass it the data array like this: ```js .data(data) ``` # --hints-- test-text ```js assert(/\.data\s*\(\s*data\s*\)/g.test(code)); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```