--- id: 5d822fd413a79914d39e98ec title: Part 36 challengeType: 0 dashedName: part-36 --- # --description-- Squeeze the buildings together again by adding two empty `div` elements at both the top and bottom of the `foreground-buildings` element, and one more in between `fb2` and `fb3`. # --hints-- test-text ```js const fb = $('.foreground-buildings').children('div'); assert( fb.length === 11 && fb[2] === $('div.fb1')[0] && fb[3] === $('div.fb2')[0] && fb[5] === $('div.fb3')[0] && fb[6] === $('div.fb4')[0] && fb[7] === $('div.fb5')[0] && fb[8] === $('div.fb6')[0] ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```