Given a string and a number, return the remaining string after n characters.
// input: const s = 'orange', n = 4 // output: 'ge'
/* output */