answers[1]=answers[1].slice(0,answers[1].length-1);// If there are multiple elements, it means there was an 'accept' and therefore a trailing ')' which should be removed
answers[1]=answers[1].slice(0,answers[1].length-1);// If there are multiple elements, it means there was an 'accept' and therefore a trailing ')' which should be removed
answers[1]=answers[1].split(newRegExp(' OR ','i'));// Ignore case using the 'i' flag in regex
answers=[answers[0],...answers[1].split(newRegExp(' OR ','i'))];// Use the first element plus the last element split by 'OR' case insensitive