Create a function that, given a string with at least three characters, returns an array of its:
- Length.
- First character.
- Last character.
- Middle character, if the string has an odd number of characters. Middle TWO characters, if the string has an even number of characters.
- Index of the second occurrence of the second character in the format "@ index #" and "not found" if the second character doesn't occur again.
Examples
all_about_strings("LASA") ➞ [4, "L", "A", "AS", "@ index 3"]
all_about_strings("Computer") ➞ [8, "C", "r", "pu", "not found"]
all_about_strings("Science") ➞ [7, "S", "e", "e", "@ index 5"]
Notes
N/A