How to update/save variables in interfaces that have no user interaction (no saveinto options)

 I want to update and save a variable in SAIL, but I don't have any user components that have a saveInto in my screen. I only have rich text display elements. 
For example, in the code below, how do I save the even numbers in the second array? 
You can see that I commented a saveInto because there is no saveInto in a rich text component.
a!localVariables(
  local!allNumbers : {1,2,3,4},
  local!evenNumbers,
  {
    /*display only even numbers and update the second array*/
    a!forEach(
      items: local!allNumbers,
      expression: if(
        mod(fv!item,2)=0,
        a!richTextDisplayField(
          value: {a!richTextItem(fv!item)},
          /*saveInto : local!temp,a!save(local!evenNumbers,append(local!evenNumbers,fv!item))*/
        ),{})
    ),
    /* show the second array */
    a!forEach(
      items: local!evenNumbers,
      expression: a!richTextDisplayField(
        value: {a!richTextItem(fv!item)})
    )
  }
)    

  Discussion posts and replies are publicly visible