var myArray = ["C'est", "un", "test"];

myArray.forEach(function(value, index, array) {
alert(
'Index : ' + index
+ '\n' +
'Valeur : ' + value
);
});