Create a function that returns true if an asterisk * is inside a box.
inBox([
"###",
"#*#",
"###"
]) ➞ true
inBox([
"####",
"#* #",
"# #",
"####"
]) ➞ true
inBox([
"*####",
"# #",
"# #*",
"####"
]) ➞ false
inBox([
"#####",
"# #",
"# #",
"# #",
"#####"
]) ➞ false
The asterisk may be in the array, however, it must be inside the box, if it exists.