- Create an empty array of integers of size 10
- Create an arrays of strings and fill it with 4 different strings
- Can you mix different data types in one array?
- You've created an empty array with the size of 10. Once declared can you add items to it? Can you add 50 items?
- There is an array called 'games'. Assign the string "Donkey Kong" to the first place in the array
- There is an array called "movies". Print the following:
- The array itself
- The second item in the array
- The length of the array
Click here to view the solution.