describe('Pass a string without brackets but with an array of items', () => {
    it('Should return the same string passed', () => {
      const str = replacer('This should be the same', ['testing', 'stimmy']);
      expect(str).toEqual('This should be the same');
    });