Week 5 - Task 2

Copy task 1 to task 2 and extend it like this:

1. When you press the "Add" button the value of the input field should be added to the array.

2. When you press the "Remove" button the last value should be removed from the array.

3. The value of this array should be displayed in the paragraph every time you press a button.

4. The value of the input field should be reset to "" (nothing) every time you press the "Add" button.

5. Bonus! If the input field contains nothing and you press "Add", then don't add it to the array

6. Bonus! If the array is empty and you press "Remove", then display an alert with a suiting error message.

7. Bonus! HARD! Add a search input field, a search button and a search result paragraph to the HTML. When pressing the search button check if the search input value exists in the array. If it finds it or not, update the search result paragraph with a suited message (ie "Found" / "Not found").

8.Bonus! HARD! Extra bonus If found in the array, also show the index here it was found.