Instructions
Write a method named buildArray that builds an array by appending
a given number of random two-digit integers. It should accept two
parameters-the first parameter is the array, and the second is an
integer for how many random values to add.
Print the array after calling buildArray.
Sample Run
How many values to add to the array: 12
[14, 64, 62, 21, 91, 25, 75, 86, 13, 87, 39, 48)