Thank you, but unfortunately, that didn't work. I updated in to an onChange script and entered as below

function onChange(control, oldValue, newValue, isLoading) {
   if (isLoading || newValue == '') {
      return;
   }

   //Type appropriate comment here, and begin script below
   g_form.setValue('article_name2', newValue);
}

Is this script correct?