I cannot run $http on the plunker. Could you help me check my code.
var QuizApp = angular.module('QuizApp', []);
QuizApp.controller('QuizController', ['$scope','$http',function($scope,$http) {
  $scope.message = "hey y'all";
  $http.get('questions.json').success(function(data){
    $scope.questions=data
  });
}]);
 
    