My goal is to get the array of objects of any index from the services array of arrays, and cycle through that array of objects through *ngFor
FILE.TS
services: Array<Servizio[]> = [];
FILE.HTML this is what I'd like to be able to do , but nothing shows in my list
<li *ngFor="let servizio of services[0]">
<a href="#">{{servizio.name}}</a>
</li>