I am looking to display the names from the array
[{'id' : 0, 'name' : 'first'}, {'id' : 1, 'name' : 'second'}]
<li ng-repeat="x in array"><strong>Names:</strong>{{x.name}}</li>
The current code displays 2 li's, but I want it to show: Names: first, second
Can anyone help me achieve this?