foreach($_SESSION AS $value){...} -> get array key of session

Rom*_*sch 4 php arrays session

I fill a session like this:

$_SESSION[$id]=$value;
Run Code Online (Sandbox Code Playgroud)

And I'm reading out the array with this:

foreach($_SESSION AS $value){...}
Run Code Online (Sandbox Code Playgroud)

But how can I read out the $id of the session too? Array key?

Thanks!