How to get referer Valuea after sending request with: pm.request.headers.get("Referer");

How to retrieve “Referer” value from request headers after sending the request ?
There are two GET request that are sending - one with status 302 and one with status 200. I can see that pm.request.headersget(“Referer”)); is taking the value from the first request with status 302 and it correctly shows that is undefined because I don’t have that value there. How Can I reach the second GET with the status 200 where I have that Referer value?