--- id: 5d8a4cfbe6b6180ed9a1c9ea title: Step 13 challengeType: 0 dashedName: step-13 --- # --description-- Add another `script` below the one you just added. Give it a `src` attribute of `./data.js`. This adds a `data` variable to your project that contains your number of social media followers, it is an array of objects. Each object has the year and your followers for three different platforms. You will see what it looks like shortly. # --hints-- test-text ```js const script = code.match(/]>\s*<\/script\s*>/gi)[1]; assert(/src\s*=\s*('|")\s*(\.\/)?data.js\s*\1/gi.test(script)); ``` # --seed-- ## --before-user-code-- ```html ``` ## --seed-contents-- ```html D3 Dashboard
``` # --solutions-- ```html D3 Dashboard
```