	  		Spoken Tutorial
	  Spoken Tutorial is brought to you by EduPyramids
	        https://spoken-tutorial.org 
	  	
           Rust Programming Language- Arrays
           
Assignment:

    1. Declare an array of 6 integers:
    	 [10, 20, 30, 40, 50, 60]
    2. Use a loop to print all elements in the array
    3. Create a slice of the array from index 2 to 4 
    4. Print the slice using {:?}
