--- id: 5d792537cb3a5cd6baca5e1a title: Part 85 challengeType: 0 dashedName: part-85 --- # --description-- Chain `forEach` onto `range(1, 99)`, passing in `createLabel` as an argument. # --hints-- See description above for instructions. ```js assert( /window\.onload[\s\S]*range\(1,99\)\.forEach\(createLabel\);?\}/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```