function doubleString(string) { return string.repeat(2); } // Should return 'echoecho' console.log("doubleString('echo') returns: " + doubleString("echo"));