I have request that response with this object and I need to display it, but I don't how to deal with because the ( 61, 70, 81 and so on)
here is my code which is not working
{ events.events.map(event =>(
<div key={event.ID}>
<p>{event.name} </p>
</div>))
}

objectnot array, so you can't useArray.map()method.mapon arrays not on object. You either need to useObject.values,Object.entriesor if you only want keys thenObject.keys.Object.entries()method.