--- id: 5d792538e48b5a2c6e5bbe12 title: Part 106 challengeType: 0 dashedName: part-106 --- # --description-- When calling `evalFormula` in `update`, pass in `Array.from(document.getElementById("container").children)` as the `cells` argument. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .includes( 'evalFormula(value.slice(1),Array.from(document.getElementById("container").children))' ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```