I am learning the backend in node. I am trying to execute the following piece of code `
const axios= require('axios')
async function getData(){
const resp = await axios.get('https://jsonplaceholder.typicode.com/todos/1')
console.log('hello',resp.data)
}
getData()