Write a function that accepts a positive number N. The function should console log a step shape with N levels using the # character. Make sure the step has spaces on the right hand side!
> steps(2)
'# '
'##'
> steps(3)
'# '
'## '
'###'
> steps(4)
'# '
'## '
'### '
'####'