I want to add the row
    ['2008',777,333]
to var fun and maintain the structure:
var fun = [
    ['Year', 'Sales', 'Expenses'],
    ['2004',  1000,      400],
    ['2005',  1170,      460],
    ['2006',  660,       1120],
    ['2007',  1030,      540]
         ];
Using push or concat seems to destroy the structure. Can this be done?
 
    