What will the cboNumbers combo box contain if the following…
What will the cboNumbers combo box contain if the following method is called twice?private void Fill(){ for (int i = 1; i < 5; i++) { cboNumbers.Items.Clear(); cboNumbers.Items.Add(i); }}