How should this be written with the deconstruction assignment of an array?

     o.rows = data[item][0];
May.11,2021

[o.rows] = data[item];

[o.rows] = data[item]
Menu