Create an application that has two parallel arrays: a String array names strPeople that is initialized with the names of 7 of your friends and a String array named strPhoneNumbers that is initialized with your friends phone numbers. The program should allow the user to enter a persons name( or part of the name). It should than search for that person in the strPeople array. If the person is found, it should get that persons phone number from the strPhoneNumbers array and display it. If the person is not found in the strPeople array the program should display a message indicating this.