Using the "Display On All Pages" feature, yes; they'll always be sorted alphabetically. To organize them, you'd need to use a global page script instead that appends the variable values onto the $PAGETEXT. Text variables are not possible, but you can get around that using conditional statements. If you wanted it to look similar to how it does when you use "Display On All Pages", the code would look something like this:
$PAGETEXT := $PAGETEXT + "<div style='clear:both;margin-top:10px;'>"
$PAGETEXT := $PAGETEXT + "Accuracy is " + %ACCURACY + ".<br>"
$PAGETEXT := $PAGETEXT + "Charisma is " + %CHARISMA + ".<br>"
$PAGETEXT := $PAGETEXT + "</div>"
The first and last lines define an area for the text and should stay as they are, but the inner lines can be changed (using the scheme $PAGETEXT := $PAGETEXT + "[Variable] is " + %[VARIABLE] + ".<br>"). The <br> creates a line break so the text isn't all on the same line. As for health, the following conditional statements could be put into the code (in between the first and last lines):
IF %HEALTH = 0 THEN $PAGETEXT := $PAGETEXT + "You are dead.<br>"
IF %HEALTH = 1 THEN $PAGETEXT := $PAGETEXT + "You are mortally wounded.<br>"
IF %HEALTH = 2 THEN $PAGETEXT := $PAGETEXT + "You are badly wounded.<br>"
IF %HEALTH = 3 THEN $PAGETEXT := $PAGETEXT + "You are wounded.<br>"
IF %HEALTH = 4 THEN $PAGETEXT := $PAGETEXT + "You are healthy.<br>"