which of the following are valid arrays declaration?
1. float hights [] = {5.4,6.3, 5.8, 5.11};
2. int numbers = new number[20];
3. double [] doubles = new double[10];
4. String[] names = String("David Beckham");
Please write the correct ones for those that are invalids.