Newbie in JS.
I want to get the json response from axios requet
const activities = Axios.get("https://api.github.com/events").then(response => response.data);
console.log(activities);
But I do not understand why it is still showing Promise {<pending>}
in console.