--- id: 5d7925379e0180a438ce7f95 title: Part 87 challengeType: 0 dashedName: part-87 --- # --description-- Inside the `range` `forEach`, use the `forEach` method on `letters`, passing in a function with argument `x` and an empty body. # --hints-- See description above for instructions. ```js assert( /window\.onload.*range\(1,99\)\.forEach\(\(?x\)?=>\{createLabel\(x\);?letters\.forEach\(\(?y\)?=>\{\}\);?\}\);?\}/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```