I am working with a JSON file that contains an array of 2 objects: `{ bg: 'a', o: 'c' }`, `{hg': 'a2', 'oo': 'c3'}`. My goal is to compare each object in the array with another object structured as follows: `{ fm: 'a', fh: 'b', o: 'a', fe: 'b', ft: 'a', fb: 'c', bg: 'f' }`. The objective is to identify if this reference object includes both sets of key/value pairs found in either of the objects within the JSON array. What would be the best approach for comparing these objects?