--- id: 5d8a4cfbe6b6180ed9a1ca58 title: Part 121 challengeType: 0 dashedName: part-121 --- # --description-- Add the `enter` and `append` functions to the selection. Pass the string `tr` to the append function to add three table row elements. These elements will be for displaying each platform's name. # --hints-- test-text ```js assert($('.dashboard div table tbody tr').length === 3); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```