--- id: 5d792535a4f1cbff7a8b9a0b title: Part 49 challengeType: 0 dashedName: part-49 --- # --description-- Make `charRange` return `range(start, end)`. # --hints-- See description above for instructions. ```js assert(JSON.stringify(charRange(1, 5)) === '[1,2,3,4,5]'); ``` # --seed-- ## --before-user-code-- ```html