Hello,
+1 is a part of the formula to get random number from "min" to "max".
We have wrote a code that you can use without understanding this formula and from what parts it consists.
You need only fill "arr" array with your text elements and set your label name.
pre
//Just add here new elements you need.
var arr = ["Text1", "Test2", "Test3", "you", "can", "add", "any", "text", "you", "wish"];
//this code not need to be changed.
var min = 0, max = arr.length - 1;
var rand = min - 0.5 + Math.random()*(max-min+1)
rand = Math.round(rand);
//Here is have to change "mobilelabel_7" by your label name.
Appery('mobilelabel_7').text(arr[rand]);
/pre