const array=[{title:'Name',body:'My name is Hacker'},{title:'Age', body:'My age is 2020'}]
Given the above code, what is the difference between the following lines of code?
console.log('Items',array);
console.log('Items'+array);
Why is different output being printed to console?
Image link for reference: https://i.stack.imgur.com/GhRQc.png