const robots = ['Bruce', 'Clark', 'Diana'] robots.map((robot, index) => { return ( <h1 key={index}>{robot} </h1> ) })