@Shigosag, 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 message says
Inside the form element, I am presented with a <textarea> at the end for additional comments.'
The textarea is not inside the form element : expected 0 to be above 0
AssertionError: The textarea is not inside the form element : expected 0 to be above 0
Do you understand what the test is looking for and why it is failing?
I see someone has given you the answer but in the future be sure to read the entire failing message.