Assert contains multiple strings

I think it can be quickly done using Array.some and a little tweaking of the test case:

pm.test("Verify any of the following strings", function () {
  let expectedStrings = ["1110", "1119"];
  responseText = pm.response.text();

  const hasAnyExpectedString = expectedStrings.some((s) => responseText.includes(s));
  pm.expect(hasAnyExpectedString).to.be.true;
});