Add a function to quickly extract a member (or multiple members) from an array of objects. Example: ```luau local array = Array.pluck({ { value = 1 }, { value = 2 } }, "value") expect(array).toEqual({ 1, 2 }) ```