Given: (Exhibit) Which two are correct? (Choose two.) By Singh | January 1, 2023 0 Comment Given:Which two are correct? (Choose two.) A. The output will be exactly 2 1 3 4 5. B. The program prints 1 4 2 3, but the order is unpredictable. C. Replacing forEach() with forEachOrdered(), the program prints 2 1 3 4 5, but the order is unpredictable. D. Replacing forEach() with forEachOrdered(), the program prints 1 2 3 4 5. E. Replacing forEach() with forEachOrdered(), the program prints 2 1 3 4 5. Correct Answer: B,D