--- id: 5d79253791391b0acddd0ac5 title: Part 82 challengeType: 0 dashedName: part-82 --- # --description-- Add the following code to `createLabel`: ```js label.className = "label"; label.textContent = name; container.appendChild(label); ``` # --hints-- See description above for instructions. ```js assert( /window\.onload[\s\S]*constcreateLabel=\(?name\)?=>\{constlabel=document\.createElement\(["']div["']\);?label\.className=["']label["'];?label\.textContent=name;?container\.appendChild\(label\);?\}/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```