Problem when request News API Call with Java Script from the google chrome which was shown in the Data Structure Project Course


Please help this problem what I can do now ?

codes :
async function getNews() {
const response = await fetch({mode: ‘cors’} , ‘http://newsapi.org/v2/top-headlines?country=in&pageSize=1&apiKey=a876816f98574cdfa23ffdc7d531c7bc’);
const jsonResp = await response.json();
return jsonResp;
}