Retrieve Array from within Array [closed]

It looks like you are using Advanced Custom Fields. Your “Product ID” is storing the object, instead of just the ID. Below shows you how you can access the post ID, otherwise just change your field saving option for Product ID.

It’s a simple foreach statement.

foreach( $pages as $page ) {
    echo $page['product_id']->ID;
}