Write the method getCoinFlips that takes a Coin and a number of flips as parameters. The method should return an array of the booleans produced by flipping the Coin the given number of times. For example, if numFlips is 5, you would return an array of 5 booleans, where the boolean at index 0 is the result of the first flip, the boolean at index 1 is the result of the second flip, etc. Your implementation should make use of the flip() method described above.