/*****************
*CODING CHALLENGE 4
*/
/*
**ARRAY PRACTICE I**
Let's start off with some basic array practice. In this task we'd like you to 
1. create an array of three items, stored inside a variable called myArray. 
The items can be anything you want — how about your favorite foods or bands?

2. modify the first two items in the array using simple bracket notation and assignment. 
3. Then add a new item to the beginning of the array.

**ARRAY PRACTICE II**
For this array task, we provide you with a starting array.

let myArray = [ "UI", "Unilag", "Lautech", "Futa", "Fuoye", "Babcock", "Uniosun", "Kwasu" ];
using the above array, perform the following tasks 

1. Remove the last item in the array.
2. Add two new names to the end of the array.
3.Finally, join the array items together in a single string called myString, with a separator of "-".

GOOD LUCK 😀😀
*/