Write some JavaScript to - Fetch user profiles from: https://randomuser.me/api/?results=20 - Inspect the data and tell us what you are looking at - Using this data write 3 functions, each using `console.log` to print their results. - `func 1` - Write a function that logs an array with concatenated first and last name ``` Example output: ['Ernst Naezer', 'Kamil Sulubulut', 'Vijai Ramcharan'] ``` - `func 2` - Write a function that logs the number of users with age 30 or older ``` Example output: there are 20 profile(s) with age 30 or older ``` - `func 3`: Write a function that logs the average age ``` Example output: the average age is 44.4 ```