UNPKG

@xaroth8088/random-names

Version:

A random name generator for all kinds of things

11 lines (9 loc) 4.12 kB
import { sample } from 'lodash-es'; export default function bouquets() { let names; const nm1 = ['Amber Admiration', 'Amber Adoration', 'Amber Amazement', 'Amber Amour', 'Amber Awe', 'Amour', 'Angelwing', 'Autumn Harvest', 'Autumn Morning', 'Be Mine', 'Be My Valentine', 'Beautiful Blossoms', 'Beauty', 'Best Wishes', 'Blessed Blossoms', 'Blissful Blossoms', 'Blooming Blues', 'Blushing Blossoms', 'Brilliance', 'Caribbean Breeze', 'Caribbean Scents', 'Celebration Time', 'Celebrations', 'Cherry Blossom Cherish', 'Cherry Blossoms', 'Chocolate Love', 'Colorful Spring', 'Colorful Summer', 'Congratulations', 'Cool Blue', 'Country Garden', 'Country Meadow', 'Country Scents', 'Crimson Crests', 'Crystal Chrysanthemums', 'Crystal Coral', 'Crystal Curiosity', 'Dahlia Dominance', 'Daydreams', 'Diamond Darlings', 'Diamond Devotion', 'Dots of Love', 'Dreamland', 'Easy Green', 'Elegant Amber', 'Emerald Elegance', 'Eternal Emerald', 'Eternal Summer', 'Exalted Emerald', 'Fall in Love', 'Fancy Floral', 'Fancy Fruits', 'Fascination', 'Fiery Red', 'First Date', 'First Impression', 'Floral Fantasy', 'Flowers of Love', 'For Mom', 'Forest Fantasy', 'Forest Flavor', 'Forest Fresh', 'Forever Spring', 'Friendship', 'Fruits of Love', 'Fruits of Spring', 'Fruits of Summer', 'Fruits of the Fields', 'Fruits of the Forest', 'Garden Secrets', 'Golden Times', 'Grandeur', 'Happiness', 'Harmony', 'Hidden Garden', 'Holly Harmony', 'Home Sweet Home', 'I Miss You', 'I Missed You', 'It\'s a Boy', 'It\'s a Girl', 'Jade Joy', 'Joy', 'Just For You', 'Just Peachy', 'Lavender Love', 'Lavish Luster', 'Lily Love', 'Love Blossoms', 'Love is ..', 'Lullaby', 'Lust', 'Lustrous Leaves', 'Magnolia Magnificence', 'Majesty', 'Marvels', 'Mellow Yellow', 'Midnight Magic', 'Midsummer Night', 'Misty Magic', 'Morning Dew', 'Morning Magic', 'Motherly Love', 'My Valentine', 'Oriental Love', 'Oriental Scents', 'Oriental Wonders', 'Ornate Orchids', 'Passion', 'Pastel Passion', 'Peace of Mind', 'Peachy Passion', 'Peachy Peace', 'Petal Parade', 'Petal Party', 'Phenomenon', 'Pink Passion', 'Pink Perfection', 'Pretty In Pink', 'Pretty Passion', 'Pretty Petals', 'Pretty in Pink', 'Purple Paramour', 'Radiance', 'Rainbow Connection', 'Rainbow of Love', 'Red Romance', 'Regal Roses', 'Rose Radiance', 'Ruby Christmas', 'Ruby Radiance', 'Sapphire Scents', 'Sapphire Splendor', 'Sapphire Style', 'Sapphire Sweethearts', 'Scented Dream', 'Scented Love', 'Scents of Heaven', 'Scents of the Rainforest', 'Serenity', 'Snow White', 'Spectacles', 'Spring Balance', 'Spring Beauty', 'Spring Breeze', 'Spring Delight', 'Spring Dreams', 'Spring Fresh', 'Spring Garden', 'Spring Glory', 'Spring Glow', 'Spring Luster', 'Spring Magic', 'Spring Meadow', 'Spring Miracles', 'Spring Morning', 'Spring Scents', 'Spring Sights', 'Spring Surprise', 'Spring Vibes', 'Spring Whispers', 'Spring to Summer', 'Spring\'s First', 'Stylish Spring', 'Summer Balance', 'Summer Bells', 'Summer Breeze', 'Summer Dreams', 'Summer Evening', 'Summer Glory', 'Summer Glow', 'Summer Harvest', 'Summer Hush', 'Summer Love', 'Summer Loving', 'Summer Magic', 'Summer Majesty', 'Summer Meadow', 'Summer Miracles', 'Summer Morning', 'Summer Phenomenon', 'Summer Pleasures', 'Summer Sensations', 'Summer Shine', 'Summer Sights', 'Summer Spectacles', 'Summer Splendor', 'Summer Style', 'Summer Sun', 'Summer Surprise', 'Summer Warmth', 'Summer to Autumn', 'Summer\'s First', 'Summer\'s Grace', 'Sunshine', 'Surprise', 'Sweet Honey', 'Sweetheart', 'Tender Tulips', 'Thank You', 'Thank You Very Much', 'Thinking of You', 'Tranquility', 'Tropical Breeze', 'Tropical Scents', 'Tropical Summer', 'Valley Fruits', 'Valley Scents', 'Velvet Fascination', 'Velvet Valley', 'Velvet Violet', 'Wedding Bells', 'Welcome Back', 'White Wonders', 'Winter Bells', 'Winter Glow', 'Winter Magic', 'Winter Marvel', 'Winter Phenomenon', 'Winter Sensations', 'Winter Spectacles', 'Winter Vibes', 'Winter Whispers', 'Winter White', 'Winter Wonders', 'Winter to Spring', 'Winter\'s Grace', 'Yellow Fever', 'You and I', 'You\'re My Angel', 'You\'re the one']; { names = sample(nm1); return names; } }