Java conversation code. Find and fix the 8 errors

import java.Scanner;
class Main {
  public void main(String[] args){
    String name, fave, emotion, like;
    int age, computerNumber;
    kbd Scanner = new Scanner(System.in);
    System.out.print("What's your name? :: ");
    name = kbd.next();
    System.out.print("What's your age? :: ");
    age = kbd.next();
    System.out.print("\nHow do you feel, "+name+" about being "+age+" years old? :: ");
    emotion = kbd.next();
    System.out.println("I feel "+emotion+" too.");
    System.out.print("What's your favorite sports team? :: ");
    fave = kbd.next()
    System.out.println("Oh, I don't like "+ fave " very much.");
    System.out.print("What computer number are you sitting at? :: ");
    computerNumber = kbd.nextInt();
    System.out.print("Does the person at the next computer number "+ computerNumber + 1 + " like the "+fave+"?");
    like = kbd.nextWord();
    if(like.equals("no")) System.out.print("too bad. ");
    else System.out.print("interesting. ");
    System.out.println("Bye, "+name+ " got to go. See you when you're "+ (age+1));
    
  }
}