--- id: 5d8a4cfbe6b6180ed9a1ca6e title: Step 142 challengeType: 0 dashedName: step-142 --- # --description-- Create another `mouseover` event for when you hover one of the `twitter-circles`. It will look like the other `mouseover` event you created except the `drawDashboard` function will take `d.year` instead of `d`. # --hints-- test-text ```js assert.match(code, /\.on\('mouseover', d => drawDashboard\(d\.year\)\)/ ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```