--- id: 5d8a4cfbe6b6180ed9a1c9eb title: Part 14 challengeType: 0 dashedName: part-14 --- # --description-- Add a third script just before the closing body tag. It will be the JavaScript file you will use to create the rest of the dashboard. Give the script a `src` of `./dashboard.js`. # --hints-- test-text ```js const script = code.match(/]>\s*<\/script\s*>/gi)[2]; assert(/src\s*=\s*('|")\s*(\.\/)?dashboard.js\s*\1/gi.test(script)); ``` # --seed-- ## --before-user-code-- ```html ``` ## --seed-contents-- ```html D3 Dashboard
``` # --solutions-- ```html D3 Dashboard
```