--- id: 5d8a4cfbe6b6180ed9a1ca0c title: Part 47 challengeType: 0 dashedName: part-47 --- # --description-- The first line is created and ready to be displayed, which will take a couple steps. On a new line, `append` a `path` element to your `lineGraph` variable. This is similar to how you appended the `g` before. # --hints-- test-text ```js assert( $('svg path').length === 3 && /lineGraph\.append\((`|'|")path\1\)/gi.test(code) ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```