const arr = ['hello', 'test', 'two words']
const string = 'this is two test words'
what i try to achieve is to check if this two words 'two words' in arr comes back in the string even if they are not behind each other. Also in any order but both words must be exist.
how can I achieve that?