--- id: 5d8a4cfbe6b6180ed9a1ca6a title: Step 138 challengeType: 0 dashedName: step-138 --- # --description-- There are four places in the file where you used `data[8]` to set data to the year 2020. Change all five of them to `data[index]` so you can pass in any year to the function to display the data from that year. The five spots are: 1. The `domain` for `pieColors`. 2. The `data` for `pieGraphData`. 3. The `text` for your pie slice text. 4. The `data` for your `legendRows`. # --hints-- test-text ```js assert( !/data\[8\]/g.test(code) && code.match(/data\s*\[\s*index\s*\]/g).length === 4 ); ``` # --seed-- ## --before-user-code-- ```html