What I am trying to accomplish (Pseudocode):
if caption.includes("dog" or "fish" or "bird" or "cat") { 
  // notify me 
}
caption is a dynamic variable. I'm able to get it to work using one keyword but I'm trying to have it check against a list of words. Doesn't need to be with includes(), whatever works.
Thank you for your time!
 
     
    