Programming Phoenix LiveView: Page 205, give it a try, better first task text

I think that this task is too ambiguous:
“Build a component to render an HTML title, with a heading and a configurable message. Render this component multiple times with different messages on the same page in your SurveyLive live view.”
I think that task text is not understandable because:

  1. we have standard HTML title element
  2. It seems that author expects us to create functional component.

This would be better:

Function components are a great way to reuse UI elements. Create a function component that displays a styled section title, consisting of a heading and a configurable message.
Use this component multiple times in your SurveyLive live view with different title/message combinations.

Thank you!