Build a Survey Form Stuck on step 13

https://codepen.io/Adamemaley/pen/rZVGdw

  1. 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. There should be at least 2 radio buttons : expected 0 to be at least 2

AssertionError: There should be at least 2 radio buttons : expected 0 to be at least 2
at o.h (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:205:2072)
at o.e.(anonymous function) [as least] (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:268:128)
at Function.n.isAtLeast (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:167:844)
at r. (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:154:368441)
at e (https://cdnjs.cloudflare.com/ajax/libs/mocha/5.2.0/mocha.min.js:1:39739)
at s.run (https://cdnjs.cloudflare.com/ajax/libs/mocha/5.2.0/mocha.min.js:1:39675)
at h.runTest (https://cdnjs.cloudflare.com/ajax/libs/mocha/5.2.0/mocha.min.js:1:45245)
at https://cdnjs.cloudflare.com/ajax/libs/mocha/5.2.0/mocha.min.js:1:46107
at r (https://cdnjs.cloudflare.com/ajax/libs/mocha/5.2.0/mocha.min.js:1:44557)
at https://cdnjs.cloudflare.com/ajax/libs/mocha/5.2.0/mocha.min.js:1:44626

They are actually radio inputs, not radio buttons (hint, hint!). For an example on usage, see: http://devdocs.io/html/element/input/radio
PS. the tests also won’t pass if the inputs (hint, hint!) don’t have value attributes set to something other than “”

Not fully understanding the point of value=“something”…

I fixed the Radio’s to Inputs, instead of Buttons…totally went over my head.