Como inserir texto no final do documento

Estou tentando inserir texto no documento do word. Mas sempre que executo meu código, o texto inserido por mim na caixa de texto é sempre adicionado no início. Não consigo inserir o texto no final do documento. Não consigo consertar isso usandoRange Além disso.

private void button2_Click(object sender, EventArgs e)
    {
        try
        {
            if (textBox1.Text != "")
            {
                Microsoft.Office.Interop.Word._Application oWord;
                object oMissing = Type.Missing;
                oWord = new Microsoft.Office.Interop.Word.Application();
                oWord.Visible = false;
                oWord.Documents.Open(filePath);
                oWord.Selection.TypeText(textBox1.Text);
                oWord.ActiveDocument.Save();
                oWord.Quit();
                MessageBox.Show("The text is inserted.");
                textBox1.Text = "";
            }
            else
            {
                MessageBox.Show("Please give some text in the text box");
            }
        }
        catch(Exception)
        {
            MessageBox.Show("Please right click on the window and provide the path");
        }
    }

questionAnswers(2)

yourAnswerToTheQuestion