'use strict'

angular.module('EXAM').controller('AnswerSort', ['$scope', '$http', function($scope, $http){
  $scope.question = new Question()

  $scope.addSentence = function(obj){
    $scope.question.addSentence(obj)
  }

  $scope.deleteArray = function(obj, index){
    $scope.question.deleteArray(obj, index)
  }
}])