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