--- id: 61439dc084fa5f659cf75d7c title: Step 12 challengeType: 0 dashedName: step-12 --- # --description-- Create another `p` element below your `.first-paragraph` element, and give it the following text: ```markup After years - years - of pondering these two problems and how to solve them, I slipped, hit my head on the sink, and when I came to I had a revelation! A vision! A picture in my head! A picture of this! This is what makes time travel possible: the flux capacitor! ``` # --hints-- You should create a second `p` element within your `.text` element. ```js assert(document.querySelectorAll('.text p')?.length === 2) ``` Your second `p` element should have the provided text. ```js assert(document.querySelectorAll('.text p')?.[1]?.innerText === 'After years - years - of pondering these two problems and how to solve them, I slipped, hit my head on the sink, and when I came to I had a revelation! A vision! A picture in my head! A picture of this! This is what makes time travel possible: the flux capacitor!') ``` # --seed-- ## --seed-contents-- ```html Magazine
freecodecamp logo

OUR NEW CURRICULUM

Our efforts to restructure our curriculum with a more project-based focus

By freeCodeCamp

March 7, 2019

--fcc-editable-region--

Soon the freeCodeCamp curriculum will be 100% project-driven learning. Instead of a series of coding challenges, you'll learn through building projects - step by step. Before we get into the details, let me emphasize: we are not changing the certifications. All 6 certifications will still have the same 5 required projects. We are only changing the optional coding challenges.

--fcc-editable-region--
``` ```css ```