配列の`filter`メソッドの戻り値の型について正しいものはどれですか? ```typescript let words: string[] = ["hello", "world"]; let result = words.filter(word => word.length > 3); ```