Which two cause a compiler error?() 
A、 float[] = new float(3);
B、 float f2[] = new float[];
C、 float[] f1 = new float[3];
D、 float f3[] = new float[3];
E、 float f5[] = { 1.0f, 2.0f, 2.0f };
F、 float f4[] = new float[] { 1.0f. 2.0f. 3.0f};