---
id: 5d8a4cfbe6b6180ed9a1ca67
title: Step 136
challengeType: 0
dashedName: step-136
---
# --description--
Finally! You have all the elements displayed and they look good. The last thing you will do is make it so you can see the data from whatever year you want.
Wrap all the code in the script you've been working with in a function named `drawDashboard` and give it a parameter named `year`. Then, at the bottom of the script, call the function you created and pass it the number `2020`.
# --hints--
test-text
```js
assert(
typeof drawDashboard === 'function' &&
/<\/script>\s*
```
# --solutions--
```html
```