Below your element with the Total Fat text, create a new p element with the text Saturated Fat 1g 5% . Wrap the 5% in a span with the class attribute set to bold . In this case this is enough to align the percentage to 5% .
Sorry, you need to put those outside the span elements. Also 8g shoudn’t be in a span on its own, you should have a span element wrapping the whole of Total Fat 8g
separating the text in two elements so that it can be aligned correctly with flex, Total Fat 8g should go to the left, and you use one span to do that, and 10% should go to the right, using a different span element
if you’re still confused about the instruction. you need to wrap the text “Total Fat” and “10%” into a span with the class of “bold” and then wrap the text “Total Fat” and 8g" in an additional span so you can align it later. hope this help!