Hi im new in java and tried to make this piece of code to work but i can't concatenate the variables
public class peces {
public static void main(String args[]){
String raza = "Barracuda";
String alimento = "otros peces";
int peso = "20";
System.out.println ("El Peso de la" +raza "es de " +peso "kg y se alimenta de " +alimeto);
}
}