HttpStatusCodes should result in HTTP_STATUS_CODES ``` javascript camelToDash = (str) -> str.replace(/([a-z\d])([A-Z])/g, '$1_$2').toUpperCase() ```