--- id: 5d8a4cfbe6b6180ed9a1ca43 title: Step 102 challengeType: 0 dashedName: step-102 --- # --description-- Next, set the `stroke` to `white` and the `stroke-width` to `2`. # --hints-- test-text ```js const pathsArr = $('.dashboard div svg g path'); assert( pathsArr[0].getAttribute('stroke') === 'white' && pathsArr[0].getAttribute('stroke-width') == 2 ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```