They are currently using `module.constructor.name`, which, of course, is not spaced. Something along the lines of: ```ts function splitPascalCase(word: string) { return word.match(/($[a-z])|[A-Z][^A-Z]+/g).join(" "); } ``` Which will turn "HelpModule" into "Help Module" etc.