Im struggling on task 147, could you explain more about what is expected on the fifth test, please
It's hard to see your code from the screenshot.
The last test checks that you've used task.title in every string in the result array.
task.title
Post your code as markdown if you have trouble with this one.
`export const formatTaskList = (tasks) => { for(let i = 0; i < tasks.length; i++){ if(tasks.status === 'DONE'){ tasks = '\u2705' + ' ' + tasks.title; }else{ tasks = '\u274c' + ' ' + tasks.title; } } return tasks; }`
Sorry could I get some help with this?