User Story
Create a Map which maps 1 with a, 2 with b and 3 with c where 1,2 and 3 are integers and a, b and c are Strings:
Expected Outcome
DEBUG|{1=a, 2=b, 3=c}
Code
Map<Integer, String> myMap = new Map<Integer, String>{1 => 'a', 2 => 'b', 3 => 'c'};
System.debug(myMap);
Video
Video does not exists.