const repeatString = function(word, num) { let out = ''; for (i = 0; i < num; i++) { out += word; } return out; }; // Do not edit below this line module.exports = repeatString;