I have a list of array items like this:
const items = [
  { a: 1 },
  { b: 2 },
  { c: 3 },
]
How can I return / log the last element: { c: 3 }
Here's what I've tried so far:
let newarray = items.map((item) => {
    console.log(item);
})
console.log(newarray);