In this program for blackjack in my card class, it says illegal start of expression, how do I fix it?/*BLACKJACK CLASS*/import java.util.Random;import java.util.Scanner;public class Blackjack{String type;int currentcard;int total = 0; //total in handstatic int dealerTotal = 0; //dealer's totalstatic int playerTotal = 0; //player's total, static variables allow totals to be compared at the endRandom ran = new Random();Scanner sc = new Scanner(System.in); //to input whether player wants to hit or staypublic Blackjack(String player){type = player; //whether it's dealer or player//System.out.println("Welcome to Blackjack!");��Deal();game();��}void displayCard()
{Card potato = new Card(); //calls from card classint currentcard = potato.drawCard();String suit = potato.getSuit();while(currentcard == 0){currentcard = potato.drawCard(); //draws cards}switch(currentcard){ //cases 11, 12, 13 = user drew a J, Q, or Kcase 11:System.out.println(" Jack " + suit);total = total + 10;System.out.println(type + " Current total: " + total); //adds to total score