Write a method called createArray that is passed a single integer value (guaranteed to be greater than 0). The method should create an array of type int, fill it with values starting at 1 (so element 0 will have a value of 1, element 1 will have 2, etc.), then return the array.