Problem:
Question- Create a static method called fillArray, which takes an integer array as an input parameter, along with an integer initial value. It should then fill the array with values starting from the initial value, and counting up by 1s.
For example, if the data array has length 5, and if the initialValue is 3, then after execution the array should hold this sequence: 3 4 5 6 7.
Please describe the code with the help of comments.