Question: What is the correct way to add a value to this array?

  1. all of these answers
  2. strings.append(4)
  3. strings.insert(5, at: 1)
  4. strings += [5]

Answer: The correct answer of the above question is Option A:all of these answers