function myFunction() {
var sheet = SpreadsheetApp.getActiveSheet();
var currentRow = sheet.getActiveCell().getRow();
if(currentRow>1){
sheet.appendRow([new Date(),'=ImportXML("http://weather.yahoo.co.jp/weather/jp/13/4410.html";,"//table[@class='yjw_table']")']);
}
}

要素リストの後に ] がありません。(行 5、ファイル「コード」)
スクリプトを実行すると上のようなエラーが出るのですがエラーの意味が分かりません
ImportXML関数はセルに直接入力すれば動作するのですが記述に間違いがあるのでしょうか?
添削よろしくお願いします