I am trying to access the "players" array coming from this API i've called in axios, the return looks like this when I am printing response.data:
Now, I thought it would be easy to access it, so I tried(without success):
response.data.players (print out all players)
response.data.players[0] (print out first player)
response.data[0] (maybe get the array?)
What am I doing wrong?