---
id: 5d8a4cfbe6b6180ed9a1ca34
title: Part 87
challengeType: 0
---
## Description
Chain `innerRadius` to the arc and pass it `0` (zero). This is set to zero to make a traditional pie chart, you would use a larger inner radius to create a doughnut chart.
## Instructions
## Tests
```yml
tests:
- text: test-text
testString: assert(/const pieArc = d3\.arc\(\)\s*\.outerRadius\(100\)\s*\.\s*innerRadius\s*\(\s*0\s*\)/g.test(code));
```
## Challenge Seed
```html
```
### Before Test
## Solution