--- id: 5d8a4cfbe6b6180ed9a1ca5a title: Part 123 challengeType: 0 --- # --description-- Use the `text` function to set the text of each `td` to the `key` of each data point by using a "d function" to return `d.key`. # --hints-- test-text ```js assert( $('.dashboard div table tbody tr td').text() === 'twittertumblrinstagram' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```