--- id: 5d8a4cfbe6b6180ed9a1ca0b title: Part 46 challengeType: 0 --- ## Description
Chain the `y` function to the line and pass it a "d function" that returns your `yScale` with `d.followers.twitter` as its argument. This is similar to how you set the x values. It will use the values of your Twitter followers and your `yScale` to set the y coordinate for each item. These "d functions" use implicit returns. But if you add curly brackets and a return statement, you can put any JavaScript in there that you want. Including `console.log` statements that can be useful for debugging.
## Instructions
## Tests
```yml tests: - text: test-text testString: assert(/\.y\s*\(\s*d\s*=>\s*yScale\s*\(\s*d\.followers.twitter\s*\)\s*\)/g.test(code)); ```
## Challenge Seed
```html ```
### Before Test
```html D3 Dashboard
```
## Solution
```html ```