Which statement adds "Burrito" to meals?

meals[0] = "Burrito";String[] meals = "Burrito";meals += "Burrito";meals[1] = "Burrito";

Yeehaw! We need to assign "Burrito" to the element at index 0.

Whoops! We need to assign "Burrito" to the element at index 0.