Hi it seams like i can't push my array ? code:
  $scope.arrResult = [];
  dpd.timesheets.get( function (result) {
    console.log(result);
    for (i = 0, n = result.length; i < n; i++) {
      var item = result[i];
      $scope.arrResult[item.week].push(item);
    }
    console.log($scope.arrResult);
  });
i get this console error
Uncaught TypeError: Cannot read property 'push' of undefined
if i set $scope.arrResult[item.week].push(item); to   $scope.arrResult[item.week] = item;
it works with no error
but i need / want to push, whats wrong ?
 
    