diff --git a/src/index.ts b/src/index.ts index 4bef512..102ae9e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,11 +2,7 @@ import wordlist from './wordlist.json' const randomElementFromArray = (arr: T[]): T => arr[Math.floor(Math.random() * arr.length)] -export const showAvailableLists = () => { - const keys = Object.keys(wordlist) - console.log(keys) - return keys -} +export const showAvailableLists = () => Object.keys(wordlist) export const generate = (format: string = '{character}_{english}', maxReformats = 16): string => { for (let i = 0; i < maxReformats; i++) {