diff --git a/packages/hoppscotch-data/src/predefinedVariables.ts b/packages/hoppscotch-data/src/predefinedVariables.ts index bfac2fb1..a3569f28 100644 --- a/packages/hoppscotch-data/src/predefinedVariables.ts +++ b/packages/hoppscotch-data/src/predefinedVariables.ts @@ -289,6 +289,38 @@ export const HOPP_SUPPORTED_PREDEFINED_VARIABLES: PredefinedVariable[] = [ }, }, + // Company names + { + key: "$randomCompanyName", + description: "A random company name.", + getValue: () => { + const companyNames = [ + "Nexora", + "CodeLoom", + "BitHaven", + "SynapseWorks", + "VoltEdge", + "Elevoria", + "Bridgent", + "Verniq", + "Corevia", + "Stratigen", + "Lunova Studio", + "Pixelora", + "MuseMind", + "BrightNest", + "Auralis", + "VerdaFlow", + "BloomShift", + "PureTrek", + "EcoVerse", + "ReLeaf Labs", + ] + + return companyNames[Math.floor(Math.random() * companyNames.length)] + }, + }, + // Addresses { key: "$randomCity",