document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. BEGIN
  2. INITIALIZE ARRAY arr[i] WITH VALUES 1,2,3,4,5
  3. FOR i := 1 to 5
  4. PRINT arr[i]
  5. END FOR LOOP
  6. INPUT indexnumber
  7. INPUT arrayvalue
  8. arr[indexnumber] = arrayvalue
  9. FOR i := 1 to 5
  10. PRINT arr[i]
  11. END FOR LOOP
  12. END
');