Two Sum II - Read Statement

Given a 11-indexed sorted array and a target, find two numbers that add up to the target. Return their indices as [index1, index2].

You may not use the same element twice. There is exactly one solution.

Example: For [2,7,11,15] and target 99, return [1,2] because 2+7=92 + 7 = 9.