Does the order of the features matter in XGBoost?

I have features x1, x2, x3. When I specify the features in different orders, I am getting different predictions and feature importance plots.

if, [x1, x2, x3] yields one prediction, [x2, x1, x3] is giving a different prediction.
I have set the random state to 0. Can you please advise?