Using the below array of objects I want to convert just the array identifier "Giants" to a string.
But every bit of code that I have attempted is returning a string of the entire array. I have gone back and forth across the internet but have not found anything stating something like this which seems so simple. So it leads me to think I am missing something really obvious here.
let Giants = [{
name: "Manning",
power: 99,
position: "QB",
random: getRandNum(1, 10)
},
{
name: "Toomer",
power: 85,
position: "WR",
random: getRandNum(1, 10)
},
];