Create a function that creates a box based on dimension n.
makeBox(5) ➞ [ "#####", "# #", "# #", "# #", "#####" ] makeBox(3) ➞ [ "###", "# #", "###" ] makeBox(2) ➞ [ "##", "##" ] makeBox(1) ➞ [ "#" ]
N/A