Tell us what’s happening:
Not having a problem, only question. what do you mean with:
#Although you previously used the required attribute to indicate that an input is required, it won’t work in this case because adding required to both inputs will convey the wrong information to users.#
adding required to both radio type input will convey wrong information. But how?
Your code so far
<h1>Registration Form</h1>
<p>Please fill out this form with the required information</p>
<form method="post" action='https://register-demo.freecodecamp.org'>
<fieldset>
<label for="first-name">Enter Your First Name: <input id="first-name" type="text" required /></label>
<label for="last-name">Enter Your Last Name: <input id="last-name" type="text" required /></label>
<label for="email">Enter Your Email: <input id="email" type="email" required /></label>
<label for="new-password">Create a New Password: <input id="new-password" type="password" pattern="[a-z0-5]{8,}" required /></label>
</fieldset>
<!-- User Editable Region -->
<fieldset>
<legend>Account type (required)</legend>
<label><input type="radio" name="account-type" checked /> Personal</label>
<label><input type="radio" name="account-type" /> Business</label>
</fieldset>
<!-- User Editable Region -->
### Challenge Information:
Learn HTML Forms by Building a Registration Form - Step 29
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-forms-by-building-a-registration-form/step-29