---
id: 5d8a4cfbe6b6180ed9a1ca43
title: Part 102
challengeType: 0
---
## Description
Next, set the `stroke` to `white` and the `stroke-width` to `2`.
## Instructions
## Tests
```yml
tests:
- text: test-text
testString: const pathsArr = $('.dashboard div svg g path'); assert(pathsArr[0].getAttribute('stroke') === 'white' && pathsArr[0].getAttribute('stroke-width') == 2);
```
## Challenge Seed
```html
```
### Before Test
## Solution