Build a Superhero Application Form - Step 15

Tell us what’s happening:

      {powersOptions.map(power => (
        <label key={power}>
          <input type="checkbox" value={power}></input>
          <span>{power}</span>
        </label>
      ))}

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: index.jsx */
{/* User Editable Region */}

          {powersOptions.map(power => (
            <label key={power}>
              <input type="checkbox" value={power}></input>
              <span>{power}</span>
            </label>
          ))}

{/* User Editable Region */}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Build a Superhero Application Form - Step 15
https://www.freecodecamp.org/learn/full-stack-developer/workshop-superhero-application-form/step-15

Welcome to the forum :wave:

Basically good, just double check the syntax for an input element.