Create a function that repeats each character in a string n times.
Repeat("mice", 5) ➞ "mmmmmiiiiiccccceeeee" Repeat("hello", 3) ➞ "hhheeellllllooo" Repeat("stop", 1) ➞ "stop"
N/A