Depending on user input, I have a range of 1 to 5 lists with arrays of items in each. The lists are named list1, list2... When I declare $scope using $scope.list = [], it doesn't specify which list it is referring to. While I could statically declare each list since there's a limit of 5, it feels inefficient. Is there a more efficient way to declare each list based on user input?