var mess = new Array(
'Providing a Safe Haven for Children',
'Turning Dependency into Self-Reliance',
'Providing Life-Changing Experiences',
'Moving from Illiteracy to Scholarship',
'Changing Fear into Hope',
'Turning Distrust into Trust',
'Making Weakness into Strength');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
