Instructions 2 and 3 in lesson 4.built-in and custom directives

can u help with this? Add two more objects to the array describing your favorite apps. Make sure to define the four properties for each app.
And after that In the view, use ng-repeat to loop through $scope.apps and display each element. To do this, add ng-repeat to a

, and then use the custom directive to display each element.
Pls write to me, thank u in advance…

4.2
$scope.apps =[{
icon: ‘img/move.jpg’,
title: ‘MOVE’,
developer: ‘MOVE, Inc.’,
price: 0.99
},
{
icon: ‘img/shutterbugg.jpg’,
title: ‘Shutterbugg’,
developer: ‘Chico Dusty’,
price: 2.99
} ,{
icon: ‘img/move.jpg’,
title: ‘Gameboard’,
developer: ‘MOVE, Inc.’,
price: 5.99
},
{
icon: ‘img/shutterbugg.jpg’,
title: ‘Forecast’,
developer: ‘Chico Dusty’,
price: 4.99
}];

The new property is meant to encompass your entries AND the previous ones, all in one array.