--- id: 5d7925373b7127cfaeb50c26 title: Part 84 challengeType: 0 dashedName: part-84 --- # --description-- Add `range(1, 99)` to the end of `window.onload` (the result will be discarded for now). # --hints-- See description above for instructions. ```js assert(/window\.onload[\s\S]*range\(1,99\);?\}/.test(code.replace(/\s/g, ''))); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```