--- id: 5d8a4cfbe6b6180ed9a1ca6e title: Part 142 challengeType: 0 dashedName: part-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 const script = $('.dashboard').siblings('script')[1].innerHTML; assert( /\.on\(('|"|`)mouseover\1, function \(d\) \{\s*return drawDashboard\(d\.year\);\s*\}\)/g.test( script ) ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```