document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. BEGIN
  2. INITIALIZE ARRAY arr[5] TO CONTAIN VALUES 1,2,3,4,5
  3. PRINT "Displaying array values."
  4. FOR i := 1 to 5
  5. PRINT arr[i]
  6. END FOR LOOP
  7. PRINT "Done."
  8. END
');