How open url in webview from other controller's table view?

MANI VC

import UIKit
import WebKit
class MainVC: UIViewController {


    @IBOutlet weak var webView: WKWebView!
    @IBAction func onMenuTapped() {
        print("Menu tapped")
        NotificationCenter.default.post(name: NSNotification.Name("ShowSideMenu"), object: nil)
    }
    override func viewDidLoad() {
        super.viewDidLoad()
    }
    override func viewDidAppear(_ animated: Bool) {
        super.viewDidAppear( animated )
        let url:URL = URL(string: "https://www.araratbank.am")!
        let urlRequest:URLRequest = URLRequest(url: url)
        webView.load(urlRequest)
    }


    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
}


TABLEVIEW

import UIKit

class SideMenuVC: UITableViewController {
    final let urlString = "http://www.mocky.io/v2/5a02ad1d330000292bf6efa0"

        var nameArray = [String]()
        var iconArray = [String]()
        var URLArray = [String]()
  
    override func viewDidLoad() {
        super.viewDidLoad()
  self.downloadJsonWithURL()
        }

    func downloadJsonWithURL() {
        let url = NSURL(string: urlString)
        URLSession.shared.dataTask(with: (url as URL?)!, completionHandler: {(data, response, error) -> Void in          
            if let jsonObj = try? JSONSerialization.jsonObject(with: data!, options: .allowFragments) as? NSDictionary {
                print(jsonObj!.value(forKey: "menuItems") as Any)              
                if let menuArray = jsonObj!.value(forKey: "menuItems") as? NSArray {
                    for menuItems in menuArray{
                        if let menuDict = menuItems as? NSDictionary {
                            if let name = menuDict.value(forKey: "name") {
                                self.nameArray.append(name as! String)
                            }
                            if let icon = menuDict.value(forKey: "icon") {
                                self.iconArray.append(name as! String)
                            }
                            if let url = menuDict.value(forKey: "url") {
                                self.URLArray.append(name as! String)
                            }                        
                        }                    
                    }                 
                }              
                OperationQueue.main.addOperation({
                    self.tableView.reloadData()
                })
            }
        }).resume()
    }
  
  
    func downloadJsonWithTask() {      
        let url = NSURL(string: urlString)      
        var downloadTask = URLRequest(url: (url as URL?)!, cachePolicy: URLRequest.CachePolicy.reloadIgnoringCacheData, timeoutInterval: 20)      
        downloadTask.httpMethod = "GET"      
        URLSession.shared.dataTask(with: downloadTask, completionHandler: {(data, response, error) -> Void in          
            let jsonData = try? JSONSerialization.jsonObject(with: data!, options: .allowFragments)          
            print(jsonData as Any)          
        }).resume()
    }
  
    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return nameArray.count
    }

    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        _ = URLArray[indexPath.row]  
        tableView.deselectRow(at: indexPath, animated: true)
    }
  
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "menu", for: indexPath)
        let label = cell.viewWithTag(1000) as! UILabel
        label.text = nameArray[indexPath.row]      
        return cell
    }
}