Which fields (1, 2, 3, 4) warnings will be suppressed in the snippet below?
@Suppress("UNUSED_VARIABLE")
val myName = "Alex" //1
val myBirthYear = 1998 //2
@Suppress("UNUSED_VARIABLE") val myCatName = "Kitty" //3
@Suppress("UNUSED_VARIABLE")
val myHobbies = listOf("Football", "Swimming", "Doing math homework") //4