values_at
Returns an array of the values returned by the given methods.
person = Person.new(id: 1, name: "bob") person.values_at(:id, :name) => [1, "bob"]
# File activemodel/lib/active_model/model.rb, line 75