Create a 2-dimensional array containing the given arrays:
[7, 5], [10, 13], [14, 17], [2, 18], [12, 19], [15, 8], [16, 11].
Which of the following represents the array correctly?
a) 7, 5, 10, 13, 14, 17, 2, 18, 12, 19, 15, 8, 16, 11
b) [7, 5], [10, 13], [14, 17], [2, 18], [12, 19], [15, 8], [16, 11]
c) [(7, 5), (10, 13), (14, 17), (2, 18), (12, 19), (15, 8), (16, 11)]
d) 7, 5, [10, 13], [14, 17], 2, 18, [12, 19], 15, 8, [16, 11]