how can i log array values from all arrays in nested objects in obj0? Assuming i do not have info about how many nested objects i have.
const obj0 = {
  array0: [1,2,3],
  obj1: {
    array1: [5,6,7],
    obj2: {
      array2: [8,9,10],
     //obj3 etc.
   }
  }
 }
 
     
    