Question #146

Author: admin
tags: Go  
package main

import "fmt"

func main() {
	arr := [5]int{1, 2, 3, 4, 5}

	slice := arr[2:5]
	slice[0] = 100

	fmt.Println(arr) // ??
}
What will be printed?
[1 100 3 4 5]
[1 2 100 4 5]
[1 2 3 4 5]
[2 3 4 5]
Rate the difficulty of the question:
easyhard