Create a function that takes two arguments (item, times). The first argument (item) is the item that needs repeating while the second argument (times) is the number of times the item is to be repeated. Return the result in a list.
repeat("innokodakademija", 3) ➞ ["innokodakademija", "innokodakademija", "innokodakademija"]
repeat(13, 5) ➞ [13, 13, 13, 13, 13]
repeat("7", 2) ➞ ["7", "7"]
repeat(0, 0) ➞ []
item can be either a string or a number.times will always be a number.