I have some data that looks like this:
On my app.component.html I have this:
<ul>
<li *ngFor="let data of myData">{{data.id}}</li>
</ul>
When I run this it show the lists but without any values so I just get lots of dots from the <li>
On my app.component.ts I have:
myData;
and then:
this.myData = obj; // Obj contains the data
How can I fix this?

console.log(myData)prints?