The code block below contains an error. It is intended to create a Scala UDF `assessPerformanceUDF()` and apply it to the integer column `customerSatisfaction` in DataFrame `storesDF`. Identify the error. Code block: ```scala val assessPerformanceUDF = udf((customerSatisfaction) => { customerSatisfaction match { case x if x < 20 => 1 case x if x < 20 => 1 // ← duplicate / suspicious line case x if x > 80 => 3 case _ => 2 } }) storesDF.withColumn("result", assessPerformanceUDF(col("customerSatisfaction"))) ``` | Databricks Certified Associate Developer for Apache Spark Quiz - LeetQuiz