Add console.log() around tasks.length to display the length of the tasks array in the console.
console.log()
tasks.length
tasks
Fantastic!
Make sure to assemble console.log(tasks.length); in your code.
console.log(tasks.length);