So I'm creating a program that can go into google and search for the word that has been saved into a variable. So my question is how I can do this, without having it go to a URL instead just going to Google and search "whatever" Here's the code.
    private void button2_Click(object sender, EventArgs e)
    {
        if (Script.Text == Script.Text)
        {
            Console.AppendText("\n[1] Loading Websites of " + Script.Text + "...");
        }
        WebClient wc = new WebClient();
        Process.Start(@"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "Scripts " + Script.Text);
    }
 
     
    