'How to Parse JSON Array Response when using Axios

I want to get all string on https://animechan.vercel.app/api/available/anime but suddenly i can't get it, anyone would help me? heres my code:

axios.get('https://animechan.vercel.app/api/available/anime')
  .then(response => {
    console.log("Source of Anime Qoutes: \n\n\n" + JSON.parse(response.data));
  })
  .catch(error => {
    console.log(error);
});


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source