Assume we have an array called arr that has a length of 6. Which is NOT a correct way to access the last element in arr?

arr["5"];
  • arr[5];
  • arr[2 + 3];
  • arr[x]; where int x = 1 + 4;
  • There are no hints for this question