Question #145

Author: admin
tags: Go  
package main

import "fmt"

func main() {
	arr := [5]string{"Tom", "Bob", "Alex", "Mia", "Ted"}

	slice1 := arr[1:5]
	slice2 := arr[2:5]

	slice1[2] = "Uma"

	fmt.Println(slice2[2])
}
What will be printed?
Mia
Alex
Bob
Uma
Ted
Rate the difficulty of the question:
easyhard