French Vanilla
3.00
--- id: 5f3ef6e0b431cc215bb16f55 title: Step 66 challengeType: 0 dashedName: step-66 --- # --description-- Add a second `p` element below the one with the link and give it the text `123 Free Code Camp Drive`. # --hints-- You should add a second `p` element to your `footer`. ```js assert($('footer').children('p').length === 2); ``` Your new `p` element should have the text `123 Free Code Camp Drive`. Make sure your new element comes after your existing element. ```js assert($('footer').children('p').last().text().match(/123 Free Code Camp Drive/i)); ``` # --seed-- ## --seed-contents-- ```html