BGMを再生するアプリを作成したいと思い、手始めにAVFoundationをインポートし、do-try-catch構文を使ってみようとしましたが、Expected declarations,Consecutive declarations on a line must be separated by ';'が表示され、;を入力しても直らないため困っています。
解決策を教えてください。宜しくお願いします。

import AVFoundation //AVFoundationフレームワークをインポートする

class ViewController: UIViewController {
    var player:AVAudioPlayer? //音声を制御するための変数
    let url = NSBundle.mainBundle().bundleURL.URLByAppendingPathComponent(soundName);do{
    try player = AVAudioPlayer(contentsOfURL:url)
    }catch{
    print("Error!")
}
}