Radio button and checkbox test failure for FCC Survey Form Project

When I run the test for the above mentioned project it gives me: 13. Inside the form element, I can select a field from one or more groups of radio buttons. Each group should be grouped using the name attribute."

<div id="recommendations">*How likely is it that you would recommend freeCodeCamp to a friend?
      <label for="definitely">
        <input id="definitely" type="radio" name="recommend-dmn" required>Definitely
      </label>
      <label for="maybe">
        <input id="maybe" type="radio" name="recommend-dmn">Maybe
      </label>
      <label for="not-sure">
        <input id="not-sure" type="radio" name="recommend-dmn">Not sure
      </label>
    </div>

I have included one or more groups of radio buttons and I have the same name attribute.

I’m not understanding what I have done wrong.

For item 14 I am getting: 14. Inside the form element, I can select several fields from a series of checkboxes, each of which must have a value attribute.

<div id=dropdown-list-2>What do you like most in FCC?
      <select name="like-most" id="like-most-dropdown">
        <option disabled selected value="select-an-option">Select an option</option>
        <option value="challenges">Challenges</option>
        <option value="community">Community</option>
        <option value="Projects">Projects</option>
        <option value="open-source">Open Source</option>
        <option value="Other">Other</option>
      </select>

Thanks for the help!