<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> **TypeScript Version:** 2.2.1 **Code** ```ts const array: number[] = [] const maybeNumber = array[10] ``` **Expected behavior:** `maybeNumber` is inferred as optional `number | undefined` **Actual behavior:** `maybeNumber` is inferred as non-optional `number` 