I have the following problem:
I want to call my functions func1(), func2() & func3() in a random order.
But i want to be sure that every function is called!
If it's possible it also would be nice that no functions are used; just a random order of code sequences. Like this:
function xy(){
//Call this sequence first second or third
doSomething1
//Call this sequence first second or third
doSomething2
//Call this sequence first second or third
doSomething3
//!! But call each sequence !!
}
Thanks in advance ;)