Given two integers as input in an array, draw a rectangle, using the first integer as width and second as height.
Or, if your language supports it, the two integers can be given as separate inputs.
Assume the width and height will never be less than 3, and they will always be given.
Example Outputs:
[3, 3]
|-| | | |-| [5, 8]
|---| | | | | | | | | | | | | |---| [10, 3]
|--------| | | |--------| This is code-golf, so the answer with the lowest amount of bytes wins.