how to check if String Text OR Text OR Text is exist one of them in List[i] ``` for (int i = 0; i < list.length; i++) { if (list[i] == parseQuery(input)) { print(list[i]); } } ```