--- id: 5d822fd413a79914d39e98e4 title: Part 28 challengeType: 0 dashedName: part-28 --- # --description-- The background buildings are starting to look pretty good. Create a new `div` below the `background-buildings` element and give it a class of `foreground-buildings`. This will be another container for more buildings. # --hints-- test-text ```js const bodyDivs = $('#display-body').children('div'); assert( bodyDivs.length === 2 && bodyDivs[1] === $('div.foreground-buildings')[0] ); ``` # --seed-- ## --seed-contents-- ```html