I am practicing with simple APIs. I request data from OXFORD API. The data is received correctly and I can navigate through it and extract the definitions or etymologies I want. However when I print the complete response after the .json() the content of some arrays is shown as [Array]. Any Idea what I am missing?
My code looks like this:
let endpoint = "https://od-api.oxforddictionaries.com/api/v2/entries/en-gb/ace?fields=definitions&strictMatch=false";
const   headers: {
    'app_id': app_id,
    'app_key': app_key
  }
fetch(endpoint,  {headers} )            
.then(rawResponse=>rawResponse.json())
.then(response=>{
    console.log(response);
    console.log(response.results[0].lexicalEntries[0].entries[0].etymologies[0])
    });
Result in the console looks like: '''
{
  id: 'ace',
  metadata: {
    operation: 'retrieve',
    provider: 'Oxford University Press',
    schema: 'RetrieveEntry'
  },
  results: [
    {
      id: 'ace',
      language: 'en-gb',
      lexicalEntries: [Array],
      type: 'headword',
      word: 'ace'
    },
    {
      id: 'ace',
      language: 'en-gb',
      lexicalEntries: [Array],
      type: 'headword',
      word: 'ace'
    }
  ],
  word: 'ace'
}
Middle English (denoting the ‘one’ on dice): via Old French from Latin as ‘unity, a unit’
''' I had tried with Apps Script, I got same result '''
 results: 
   [ { id: 'ace',
       language: 'en-gb',
       lexicalEntries: [Object],
       type: 'headword',
       word: 'ace' },
'''
Thanks in advance
