I tried to set up and retrieve the array values from the controller.
Check out the fiddle here.
var app = angular.module('carApp', []);
app.controller('carAppCtrlr', function ($scope) {
$scope.vehicles = [{
type: 'car',
color: 'red'
}, {
type: 'bike',
color: 'black'
}];
};);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div data-ng-app='carApp' data-ng-controller='carAppCtrlr'>
<ul>
<li data-ng-repeat='v in vehicles'>{{v.type +" " + v.color}}</li>
</ul>
</div>
Result
The values are not displaying correctly: