@ bbs2527, when a test fails click the red button to see which test(s) are failing and text to help you correct the issue.
Be sure and read more than just the first line of the failing message . The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.
The failing test message says
For the name, email, and number input fields inside the form I can see corresponding labels that describe the purpose of each field with the following ids: id=“name-label”, id=“email-label”, and id=“number-label”.
I read it but I think I misconstrued what the error was mentioning. I thought it wanted the inputs to have id=“name-label”, id=“email-label”, and id=“number-label” which would have been strange considering it already requested specific ids and the for attribute to the corresponding labels wouldn’t have matched. I went ahead and added the id to the label elements and it seemed to be good error wise now :).