--- id: 5d8a4cfbe6b6180ed9a1ca12 title: Part 53 challengeType: 0 dashedName: part-53 --- # --description-- On a new line, `append` a `path` element to the `lineGraph` variable. This one will be for displaying the `tumblrLine`. # --hints-- test-text ```js assert( $('svg path').length === 4 && code.match(/lineGraph\.append\((`|'|")path\1\)/gi).length === 2 ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```