Survey Form Test Fails on #14

Tell us what’s happening:
I am failing the test number 14, with following message:

  1. Inside the form element, I can select several fields from a series of checkboxes, each of which must have a value attribute.

All of my checkboxes have a name:value pair. I am not sure how to proceed to fix this. The code for the checkbox section is below. Thanks for the help.

Your code so far

Click your favorite topics:
JavaScript Functions
JavaScript ES6 Objects
CSS Grids
CSS Positioning
HTML Forms
React
**Your browser information:**

Google Chrome Version 73.0.3683.86 (Official Build) (64-bit)

Link to the challenge:

Sorry, here is my code for the checkbox section:

<div class="form-row">
        <div class="form-label form-vertical-top" id="topics">
          <label for="topics">Click your favorite topics:</label>
        </div>
        <div class="form-input">
          <input type="checkbox" id="js-functions" name="topic1" value"js-function">
          <label for="js-functions">JavaScript Functions</label><br>
          <input type="checkbox" id="js-es6" name="topic2" value="js-es6">
          <label for="js-es6">JavaScript ES6 Objects</label><br>
          <input type="checkbox" id="css-grid" name="topic3" value="css-grids">
          <label for="css-grids">CSS Grids</label><br>
          <input type="checkbox" id="css-position" name="topic4" value"css=position">
          <label for="css-position">CSS Positioning</label><br>
          <input type="checkbox" id="html-forms" name="topic5" value="html-forms">
          <label for="html-forms">HTML Forms</label><br>
          <input type="checkbox" 
                id="react" name="topic6" value="react">
          <label for="react">React</label><br>
        </div>

I replaced the missing equal signs. Woops! it passed!