Create a function that takes two numbers $n1 $n2 and multiplies them without using *.
$n1
$n2
*
multiply(3, 2) ➞ 6 multiply(4, 10) ➞ 40 multiply(-2, 4) ➞ -8
Do not use * for this challenge.