package main

import (
	"fmt"
	"gotest/consecutive"
)

func main() {

	array := []int{1, 2, 4, 3, 6, 5}

	fmt.Println(consecutive.Consecutive(array))

}