Write multiplication_table(n, limit) that returns a list [n*1, n*2, ..., n*limit].
multiplication_table(n, limit)
[n*1, n*2, ..., n*limit]