C:\Users\hoffmant\Desktop>java Rec2 Enter a string of length 10 to 20 characters: StanleyYelnats Your string has length: 14 First 6 chars were: Stanle Last 5 chars were: lnats First char was: S Last char was: s Your string contains the letter 'a' at the index position 2 Your string contains the letter 'e' at the index position 5 ** NOW WE RUN THE PROGRAM AGAIN WITH A DIFFERENT RESPONSE STRING C:\Users\hoffmant\Desktop>java Rec2 Enter a string of length 10 to 20 characters: TimothyHoffman Your string has length: 14 First 6 chars were: Timoth Last 5 chars were: ffman First char was: T Last char was: n Your string contains the letter 'a' at the index position 12 Your string does not contain the letter 'e' ** NOW WE RUN THE PROGRAM AGAIN WITH A DIFFERENT RESPONSE STRING C:\Users\hoffmant\Desktop>java Rec2 Enter a string of length 10 to 20 characters: ComputerScience Your string has length: 15 First 6 chars were: Comput Last 5 chars were: ience First char was: C Last char was: e Your string does not contain the letter 'a' Your string contains the letter 'e' at the index position 6