--- id: 5d7925373104ae5ae83f20a5 title: Part 83 challengeType: 0 dashedName: part-83 --- # --description-- The `forEach` method takes a function and calls it with each element of the array. Chain `forEach` to `letters` and pass it the `createLabel` function to create a label for each of the letters. # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').includes('letters.forEach(createLabel)')); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```