iOS Swift - Navigation
Given this code snippet, what will happen when the button is tapped?
func buttonTapped() {
let vc = SettingsViewController()
navigationController?.pushViewController(vc, animated: true)
}