What is the correct order of the following lines of code to write DataFrame `storesDF` to file path `filePath` as Parquet format partitioned by values in the column "division"? Lines of code: (1) .write() \ (2) .partitionBy("division") \ (3) .parquet(filePath) \ (4) .storesDF \ (5) .repartition("division") \ (6) .write \ (7) .path(filePath, "parquet") | Databricks Certified Associate Developer for Apache Spark Quiz - LeetQuiz