I have two objects that I want my index action to return, but I'm struggling to find the syntax to return them both at the same time.
def index
last_day_for_jack = Tacobell.where(owner: "Jack")
last_day_for_pete = Tacobell.where(owner: "Pete")
render json: { last_day_for_jack last_day_for_pete }
end