Write down a static method, getBigWords, which takes a String parameter and returns an array whose elements are words in the parameter that consists of more than 5 letters. (A word is described as a contiguous sequence of letters.) So, given a String like "There are 87,000,000 people in the Canada", getBigWords would return an array of two elements, "people" and "Canada".