Pass an Array as Props last test failed - please help

Tell us what’s happening:

const List= (props) => {
  { /* change code below this line */ }
  return <p>{props.tasks.join(",")}</p>
  { /* change code above this line */ }
};

class ToDo extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div>
        <h1>To Do Lists</h1>
        <h2>Today</h2>
        { /* change code below this line */ }
        <List tasks ={["wakeup", "breakfasf"]} />
        <h2>Tomorrow</h2>
        <List tasks= {["breaktime", "meeting", "lunch"]} />
        { /* change code above this line */ }
      </div>
    );
  }
};

Your code so far


const List= (props) => {
  { /* change code below this line */ }
  return <p>{props.tasks.join(",")}</p>
  { /* change code above this line */ }
};

class ToDo extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div>
        <h1>To Do Lists</h1>
        <h2>Today</h2>
        { /* change code below this line */ }
        <List tasks ={["wakeup", "breakfasf"]} />
        <h2>Tomorrow</h2>
        <List tasks= {["breaktime", "meeting", "lunch"]} />
        { /* change code above this line */ }
      </div>
    );
  }
};

Your browser information:

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

Link to the challenge:

You’re missing a space somewhere, all words should be separated by one.

I figured it out thanks!