const todo = ['Make bed', 'Brush teeth', 'Eat breakfast']; const list = []; for (const item in todo) { list.push(<li>{todo[item]}</li>) };