Mixed Messages: Inspirational Quotes

In my project i have used Inspirational Quotes as a random messages. It took me a few hours to make my code version look short and acceptable.

I hope to get some feedback to see if i haven’t simplified my code too much.

The link to my project file GitHub - AlexRouski/mixedMessages: Generating random messages

Thank you.

Hi! I just look at your code! you really make it short! nice!
one suggestion i give you for the property phrases of the object the line is too long… you can jump lines to make it more easy to read:

let messages = {
    startOfMessage: ['Remember', 'Listen', 'Look'],
    phrases: ["When you have a dream, you've got to grab it and never let go.",
 "Nothing is impossible. The word itself says 'I'm possible!", "There is nothing impossible to they who will try.", 
 "The bad news is time flies. The good news is you're the pilot.",
 "Keep your face always toward the sunshine,  and shadows will fall behind you.",
  "Success is not final, failure is not fatal: it is the courage to continue that counts.",
 "You define your own life. Don't let other people write your script.",
 "You are never too old to set another goal or to dream a new dream.",
 "You don't always need a plan. Sometimes you just need to breathe, trust, let go and see what happens.",
 "Not having the best situation, but seeing the best in your situation is the key to happiness."],
    endOfMessage: ["Good luck!", "Have an awesome day!", "Think about."]
}

I would do something like that so when looking the project not having to scroll to much!