Hey! This is the task you’re expected to do in this challenge.
props or properties in react js is a way for you to send any additional data from a parent component to any child component in your app. You can think of them as attributes and values that you pass to any html element.
<img src="https://somerandomsource.com" />
here, the src is an attribute that is required for the HTML img element to work correctly. but in react if you’re able to create your own components then its safe to assume that to pass data to those components, you should have a similar mechanism.
In this example, the challenge is asking you to provide value to an attribute with the help of built in Date object. If you call this Object like Date() it will return the current date which you can pass to the prop.