--- id: 5d8a4cfbe6b6180ed9a1ca21 title: Step 68 challengeType: 0 dashedName: step-68 --- # --description-- Circles also need an `r` (radius) attribute so they know how big to be. Use the `attr` function to set the `r` to `6`. # --hints-- test-text ```js assert($('svg circle')[0].getAttribute('r') == '6'); ``` # --seed-- ## --before-user-code-- ```html