Memory order relaxed

Which statement about std::memory_order_relaxed is correct?

std::atomic<int> x{0};
x.store(1, std::memory_order_relaxed);