Why it is not getting accepted

Tell us what’s happening:

Your code so far


const frontEndFrameworks = [
'React',
'Angular',
'Ember',
'Knockout',
'Backbone',
'Vue'
];

function Frameworks() {
const renderFrameworks = frontEndFrameworks.map(i=> <li key= {i}> {i}</li>)
 // change code here
return (
  <div>
    <h1>Popular Front End JavaScript Frameworks</h1>
    <ul>
      {renderFrameworks}
    </ul>
  </div>
);
};

Your browser information:

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

Challenge: Give Sibling Elements a Unique Key Attribute

Link to the challenge:

You have an extra space:

<li key= {i}> {i}</li>
             ^
2 Likes