Creates new array with specified content.
assert(makeFilledArray(4, 5) == [5, 5, 5, 5]); assert(makeFilledArray(10, ' ') == " ");
See Implementation
Creates new array with specified content.