From 15ab3d32842e802a1deefa674cad060e2ba46b4f Mon Sep 17 00:00:00 2001 From: Liam Date: Wed, 16 Oct 2019 21:42:37 -0400 Subject: [PATCH] GH-6: add more affirmations --- affirmations.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/affirmations.js b/affirmations.js index 52a68f1..473a768 100644 --- a/affirmations.js +++ b/affirmations.js @@ -26,6 +26,10 @@ const affirmations = [ "You are worthy and deserving of respect", "You know more than you knew yesterday", "You're an inspiration", + "Your life is already a miracle of chance waiting for you to shape its destiny", + "Your life is about to be incredible", + "Nothing is impossible. The word itself says 'I’m possible!'", + "Failure is just another way to learn how to do something right" ]; const getRandomAffirmation = () => affirmations[Math.floor(Math.random() * affirmations.length)];