iOS Swift - Navigation
What is the error in the following code that causes a crash when performing the segue?
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
let destinationVC = segue.destination as! DetailViewController
destinationVC.data = "Hello"
}