Check whether a string consists of an element in an array [duplicate]

I want to perform the following actions depending on whether the string sample_input consists any of the characters in the array vowel_list.

let vowel_list = ["a", "e", "i", "o", "u"]
let sample_input = "Hello, Stack Overflow!"

// If sample_input has a vowel, I want to print "Great, sample_input has got a vowel in it!" on the console.

I tried to use .includes(), but later on it dawned on me that it could only check whether the string has a specific block of string in it. For instance,

let test = "Hello World!"

if (test.includes("H")) {
    console.log("The string 'test' includes letter H")
}