Quiero determinar si la cadena tiene al menos 2 mismos elementos de la matriz const array = ["!", "?"]; const string1 = "!hello"; // should return false const string2 = "!hello?"; // should return false const string3 = "!hello!"; // should return true const string4 = "hello ??"; // should return...