I'm trying to fetch simple data from https://picsum.photos/v2/list
let data = [];
  const f1_data = await fetch("https://picsum.photos/v2/list").then((res) =>
    res.json()
  );
  data = f1_data;
  console.log(data);
But I can't access data in the array, all I'm getting [object Object].
How, for example, I can access all authors or Theys ID, or any specific info in object?
 
     
     
     
    