I just want to make sure that if I used a where query like so:
product1, product2 = Product.where(id: [1, 2]) it will always return the data in that order specified in the array, so the assignment will always be correct.
Is that the behaviour or it might not return the data in that specific order at some time?