Render a Class Component to the DOM -- last test

Tell us what’s happening:
I’m not getting an error, and the dom is rendering as expected, but I just can’t get it to pass the last test. What am I missing? Am I misunderstanding when it says "…within the div with the id challenge-node " ?

Your code so far



class TypesOfFood extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div>
        <h1>Types of Food:</h1>
        {/* change code below this line */}
        <Fruits />;
        <Vegetables />;
        {/* change code above this line */}
      </div>
    );
  }
};

// change code below this line
ReactDOM.render(<TypesOfFood />, document.getElementById('challenge-node'));

Your browser information:

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

Link to the challenge:
learn.freecodecamp.org/front-end-libraries/react/render-a-class-component-to-the-dom

Thank you thank you! @camperextraordinaire. I figured it was something simple