--- id: 5d822fd413a79914d39e98e6 title: Part 30 challengeType: 0 dashedName: part-30 --- # --description-- Nest six `div` elements within `foreground-buildings` and give them the classes of `fb1` through `fb6` in that order. "fb" stands for "foreground building". These will be six more buildings for the foreground. # --hints-- test-text ```js const fb = $('.foreground-buildings').children('div'); assert( fb.length === 6 && fb[0] === $('div.fb1')[0] && fb[1] === $('div.fb2')[0] && fb[2] === $('div.fb3')[0] && fb[3] === $('div.fb4')[0] && fb[4] === $('div.fb5')[0] && fb[5] === $('div.fb6')[0] ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```