Code QuizIntermediate

Platform.select Value Mapping

Find why Platform.select returns undefined here.

Codejavascript
import { Platform } from 'react-native';

const fontFamily = Platform.select('Helvetica', 'Roboto');

export default fontFamily;

What is wrong with this Platform.select call?