My goal is to use choose(1,2,3,4) to choose one of four values. But I want to always exclude the value which was chosen previously, which I store in a variable.
Is it possible to exclude the previously chosen value from the arguments inside choose() with some kind of an expression?
I would like to keep things simple and not use an array for this.