const repeatString = function(string, num) {
return string.repeat(num);
};
// Do not edit below this line
module.exports = repeatString;