I am working on a javascript program and i'll need to merge the below multidimensional array into one array
array = [
    [ '78161701,20221101,20221108' ]
    [ '76450406,20221101,20221108' ]
    [ '76450047,20221101,20221108' ]
    [ '76450111,20221101,20221108' ]
    [ '72606489,20221101,20221108' ]
    [ '79557102,20221101,20221108' ]
]
This is my expected outcome
array = [
    '78161701,20221101,20221108',
    '76450406,20221101,20221108',
    '76450047,20221101,20221108',
    '76450111,20221101,20221108',
    '72606489,20221101,20221108',
    '79557102,20221101,20221108'
 ]
 
    