--- id: 5d8a4cfbe6b6180ed9a1ca0e title: Step 49 challengeType: 0 dashedName: step-49 --- # --description-- Add three more `attr` functions to the path; one to set the `stroke` to your `twitterColor` variable, another to set the `stroke-width` to `3`, and a third to set the `fill` to `transparent`. # --hints-- test-text ```js const twitterPath = $('svg path')[2]; assert( twitterPath.getAttribute('stroke') === '#7cd9d1' && twitterPath.getAttribute('stroke-width') == '3' && twitterPath.getAttribute('fill') === 'transparent' ); ``` # --seed-- ## --before-user-code-- ```html