Not able to fetch the data from api endpoint

I’m not able to get data from the api end point for the assignment 5 (designing a quiz app)
this is the result i get :
Access to fetch at ‘https://5d76bf96515d1a0014085cf9.mockapi.io/quiz’ from origin ‘http://127.0.0.1:5500’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. If an opaque response serves your needs, set the request’s mode to ‘no-cors’ to fetch the resource with CORS disabled.

and this is my code:
async function quexdata(){

const res = await fetch("https://5d76bf96515d1a0014085cf9.mockapi.io/quiz")

const {results} = await res.json()
console.log('results',results)

}
quexdata()